how to (simply) generate POST http request from java to do the file upload

前端 未结 2 1566
栀梦
栀梦 2021-01-14 08:19

I would like to upload files from java application/applet using POST http event. I would like to avoid to use any library not included in SE, unless there is no other (feas

2条回答
  •  不要未来只要你来
    2021-01-14 08:44

    You need to learn about the chunked encoding used in newer versions of HTTP. The Apache HttpClient library is a good reference implementation to learn from.

提交回复
热议问题