Upload and POST file to PHP page with Java

前端 未结 6 1451
臣服心动
臣服心动 2020-12-01 10:14

I need a way to upload a file and POST it into php page...

My php page is:



        
6条回答
  •  Happy的楠姐
    2020-12-01 10:42

    You are not using the correct HTML file upload semantics. You are just posting a bunch of data to the url.

    You have 2 option here:

    • You can keep the java code as-is, and change the php code to just read the raw POST as a file.
    • Change the java code to do a real file upload possibly using a common library.

    I'd recommend changing the java code to do this in a standards compliant way.

提交回复
热议问题