我尝试使用HttpsURLConnection(与其他令牌一起)上传大文件,如果我将其上传到一个块中,显然,我得到的是OutOfMemory异常。
我试着效仿这个例子:http://www.cuelogic.com/blog/android-code-to-upload-download-large-files-to-server-2/
但是现在我在系统调用期间遇到了一个" I / O错误,Broken pipe"错误。
我看到这是一个已知的问题,但我没有找到任何好的解决方案。我该如何解决这个问题?
答案 0 :(得分:0)
试试这种方式
public void connectForMultipart() throws Exception {
con = (HttpURLConnection) ( new URL(url)).openConnection();
con.setRequestMethod("POST");
con.setDoInput(true);
con.setDoOutput(true);
con.setRequestProperty("Connection", "Keep-Alive");
con.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
con.connect();
os = con.getOutputStream();
}
public void addFormPart(String paramName, String value) throws Exception {
writeParamData(paramName, value);
}
public void addFilePart(String paramName, String fileName, byte[] data) throws Exception {
os.write( (delimiter + boundary + "\r\n").getBytes());
os.write( ("Content-Disposition: form-data; name=\"" + paramName + "\"; filename=\"" + fileName + "\"\r\n" ).getBytes());
os.write( ("Content-Type: application/octet-stream\r\n" ).getBytes());
os.write( ("Content-Transfer-Encoding: binary\r\n" ).getBytes());
os.write("\r\n".getBytes());
os.write(data);
os.write("\r\n".getBytes());
}
public void finishMultipart() throws Exception {
os.write( (delimiter + boundary + delimiter + "\r\n").getBytes());
}
您可以使用
请求使用更多内存清单中的android:largeHeap="true"
。
另外,您可以使用本机内存(NDK和JNI),因此您实际上绕过了堆大小限制。
这里有一些关于它的帖子:
这是一个为它制作的图书馆:
快乐编码
关于maven