当我将图像从Android设备(v 2.2)上传到服务器(apache with php) 基本上,有同样的问题:Android Development Image Upload Corrupted
首先,上传方法基于apache httpcomponent 4.1,我认为问题在于它。然后我根据HttpURLConnection写了我自己的上传库。
我尝试使用不同的服务器,但它仍然是相同的。
例:
http://pixelbirthcloud.com/corrupted_images/1_orig.jpg - 原始图像
http://pixelbirthcloud.com/corrupted_images/1_corrupted.jpg - 我们在服务器上获得的内容。
文件大小相同,但内容中的内容存在损坏的字节块:
00051330 | 49 69 11 4B 9D E6 | 00051330 | DA BB 10 70 DC 77 |
00051338 | 2D B9 1B B9 E4 81 5A E6 | 00051338 | AC 20 C7 90 7E B4 33 80 |
00051340 | D4 14 B0 F4 EA 3D D1 E9 | 00051340 | 31 9A B8 C2 29 83 66 9C |
00051348 | 61 9D E3 38 F7 36 DE 63 | 00051348 | 9A 84 8E 73 9A 8D B5 29 |
00051350 | 25 9D 9D C4 64 C3 23 AA | 00051350 | 18 60 1C 0F 7A CF 33 01 |
00051358 | 4A EB 08 C3 97 7C 8C 36 | 00051358 | D4 F0 7A D3 24 BA 85 71 |
00051360 | 73 F5 E3 15 14 5B BC C1 | 00051360 | F3 0A 76 8A D6 C4 36 5E |
00051368 | B9 A4 49 06 71 1B 11 87 | 00051368 | 7B B9 5F 20 E3 A5 46 F2 |
00051370 | 39 E7 76 7B 8F 5F | 00051370 | B8 1D 4E 6B 36 6D |
我不知道它取决于什么,但在我的客户设备上,图像变得更加破坏。有时上传很好,但大部分时间上传的图片都已损坏。
所以我猜这不是关于http转移的。这是关于从SD卡到内存然后将该流保存到http ...
的内容代码如下。
你们有什么想法吗?尝试了一切,但仍然无法正常工作。
public String execute() throws IOException {
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****MultipartBoundary";
try {
URL url = new URL(mUri);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Content-Type",
"multipart/form-data; boundary=" + boundary);
// timeouts
conn.setConnectTimeout(CONNECT_TIMEOUT);
conn.setReadTimeout(READ_TIMEOUT);
Log.d(TAG, "Opening connectionStream");
DataOutputStream dos = new DataOutputStream(conn.getOutputStream());
Log.d(TAG, "Adding params");
for (NameValuePair param : mParams) {
dos.writeBytes(twoHyphens + boundary + lineEnd);
dos.writeBytes("Content-Disposition: post-data; name="
+ param.getName() + lineEnd);
dos.writeBytes(lineEnd);
dos.writeBytes(param.getValue());
dos.writeBytes(lineEnd);
}
File file;
Log.d(TAG, "Adding files");
for (NameValuePair param : mFiles) {
file = new File(param.getValue());
if (file.exists()) {
dos.writeBytes(twoHyphens + boundary + lineEnd);
dos.writeBytes("Content-Disposition: post-data; name="
+ param.getName() + "; filename=" + file.getName()
+ lineEnd);
dos.writeBytes("Content-Type: application/octet-stream" + lineEnd);
dos.writeBytes("Content-Transfer-Encoding: binary" + lineEnd);
dos.writeBytes(lineEnd);
Log.d(TAG, "Opening fileInputStream");
FileInputStream fileStream = new FileInputStream(file);
try {
int bytesAvailable;
while((bytesAvailable = fileStream.available()) > 0)
{
int bufferSize = Math.min(bytesAvailable, 4096);
byte[] buffer = new byte[bufferSize];
int bytesRead = fileStream.read(buffer, 0, bufferSize);
dos.write(buffer, 0, bytesRead);
}
dos.writeBytes(lineEnd);
} finally {
fileStream.close();
}
Log.d(TAG, "Closing fileINputStream");
}
}
// very important - we specify the end of the multipart block
dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
dos.flush();
dos.close();
// getting response
if (conn.getResponseCode() == HttpStatus.SC_OK) {
BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());
try {
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int read = 0;
int bufSize = 512;
byte[] buffer = new byte[bufSize];
while(true){
read = bis.read(buffer);
if(read==-1){
break;
}
baf.append(buffer, 0, read);
}
Log.d(TAG, "Connection successful - returning result");
return new String(baf.toByteArray(), "UTF-8");
} finally {
bis.close();
}
} else {
Log.d(TAG, "Return code is " + Integer.toString(conn.getResponseCode()));
throw new IOException("Return code is " + Integer.toString(conn.getResponseCode()));
}
} catch (MalformedURLException e) {
Log.e(TAG, "Exception: " + e.getMessage(), e);
throw new IOException("aaa");
} catch (IOException e) {
Log.e(TAG, "Exception: " + e.getMessage(), e);
throw new IOException();
}
}
更新
在创建流时考虑了数据损坏..所以我更改了一些代码以保存源流中的文件:
FileOutputStream fileOutStream = new FileOutputStream(AndorraApplication.getPhotosPath() + "/orig_" +file.getName() );
DataOutputStream dataOutStream = new DataOutputStream(fileOutStream);
try {
int bytesAvailable;
while((bytesAvailable = fileStream.available()) > 0)
{
int bufferSize = Math.min(bytesAvailable, 4096);
byte[] buffer = new byte[bufferSize];
int bytesRead = fileStream.read(buffer, 0, bufferSize);
dos.write(buffer, 0, bytesRead);
dataOutStream.write(buffer, 0, bytesRead);
}
dos.writeBytes(lineEnd);
} finally {
fileStream.close();
dataOutStream.close();
}
当上传的图像损坏时,使用dataOutStream存储的图像很好......现在完全丢失了。
Froyo上的HTTPUrlConnection是否有错误?
答案 0 :(得分:0)
检查我在这里回答如何将文件(让它是来自内存或任何文件的图像文件)上传到服务器..
Android httpclient file upload data corruption and timeout issues
上传图片非常适合我。