My upload code as below:
String end = \"\\r\\n\"; String twoHyphens = \"--\"; String boundary = \"*****\"; try { URL url = new URL(ActionUrl); HttpURLConnection
brian, you should add
con.setChunkedStreamingMode(0);
before
DataOutputStream ds = new DataOutputStream(con.getOutputStream());
if your server could support chunked mode, or add
con.setFixedLengthStreamingMode(packet_size);
where packet_size = upload_file_size + header_size.
packet_size = upload_file_size + header_size