【发布时间】:2011-03-29 19:14:05
【问题描述】:
试图找出我的编码有什么问题。我关注了here 的一篇博文。
我设法获得了将文件实际上传到 PHP Web 服务的代码。然而,由于某种原因,虽然我已经明确设置了文件的 MIME 类型,但 PHP 显示 MIME 只是一个空白字符串,因此被拒绝了。
这是我的编码:
public String SendPost(String fn, String bid, String caption, String uid, String APIKey, String postHash)
throws ParseException, ClientProtocolException, IOException {
HttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
HttpPost httppost = new HttpPost(UrbURL);
Log.i("POSTFN", fn);
Log.i("POSTFN", bid);
Log.i("POSTFN", caption);
Log.i("POSTFN", uid);
Log.i("POSTFN", APIKey);
Log.i("POSTFN", postHash);
String postAuth = uid + postHash;
postAuth = md5(postAuth);
postAuth = postAuth.substring(0, 16);
//Log.i("POSTAUTH", postAuth);
MultipartEntity mp = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
/*File tempImg = new File(fn);
FileBody bin = new FileBody(tempImg, "image/jpg");*/
mp.addPart("business_photo", new FileBody(new File(fn), "image/jpg"));
//StringBody s = new StringBody(bid, "text/plain", Charset.forName( "UTF-8" ));
mp.addPart("business_id", new StringBody(bid, "text/plain", Charset.forName( "UTF-8" )));
//s = new StringBody(caption, "text/plain", Charset.forName( "UTF-8" ));
mp.addPart("photo_caption", new StringBody(caption, "text/plain", Charset.forName( "UTF-8" )));
//s = new StringBody(uid, "text/plain", Charset.forName( "UTF-8" ));
mp.addPart("user_id", new StringBody(uid, "text/plain", Charset.forName( "UTF-8" )));
//s = new StringBody(APIKey, "text/plain", Charset.forName( "UTF-8" ));
mp.addPart("apikey", new StringBody(APIKey, "text/plain", Charset.forName( "UTF-8" )));
//s = new StringBody(postAuth, "text/plain", Charset.forName( "UTF-8" ));
mp.addPart("auth", new StringBody(postAuth, "text/plain", Charset.forName( "UTF-8" )));
httppost.setEntity(mp);
String response = EntityUtils.toString( httpclient.execute( httppost ).getEntity(), "UTF-8" );
httpclient.getConnectionManager().shutdown();
return response;
}
非常感谢之前:)
【问题讨论】:
-
嗨,你能告诉我什么是'charset',我设置了什么
标签: android httpclient http-post mime-types multipartform-data