How could I upload a large file in chunks using Java?

前端 未结 5 654
夕颜
夕颜 2020-12-03 15:40

I need to upload a large file in chunks using Java.

Is there any sample code I can refer to?

5条回答
  •  情歌与酒
    2020-12-03 16:18

    You can simply break the file up yourself, send it using the Socket API, and re-assemble the file.

提交回复
热议问题