1

我正在尝试使用 MultiPartEntity 将图像从 android 上传到 PHP 服务器,但我无法找到问题的根源,进度对话框钢下载没有在我的代码中提供任何响应:

    public String postFunction(String s_v1, String s_v2, String s_v3)
throws ParseException, ClientProtocolException, IOException {

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(s_v1);

//required apache-mime4j-0.6, et httpmime-4.0.3
MultipartEntity  mp = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);

mp.addPart("choix", new StringBody("2"));
boolean exists = (new File("/data/data/my.package/files/avatar.jpg")).exists();  
if (!exists){

    Log.i(TAG,"no file");

} 
else
{
File tempImg = new File("/data/data/my.package/files/avatar.jpg");
FileBody bin = new FileBody(tempImg, "image/jpg");
mp.addPart("photo_r", bin);
}
mp.addPart("myString1", new StringBody(s_v2,  Charset.forName( "UTF-8" )));
mp.addPart("myString2", new StringBody(s_v3, Charset.forName( "UTF-8" )));

httppost.setEntity(mp);
Log.i(TAG,"start ");
HttpResponse response = httpclient.execute(httppost);
Log.i(TAG,"end");
return response;
}

不知道哪里出了问题!!非常感谢;)

4

1 回答 1

1

问题解决了,这是因为我的互联网连接速度太慢,现在我尝试使用模拟器中生成的 SocketTimeoutException 来限制连接时间,但不幸的是我的手机宏基液体中没有!

于 2010-09-27T22:39:58.023 回答