您好,我正在使用 loopJ异步 Http 客户端将值发布到 Web 服务。我面临的问题是。我将我的位图编码为 Base64 字符串并将此字符串用作 Web 服务的参数。我总是得到 ClientProtocolException 并且没有响应。我知道字符串有问题。但我不知道问题出在哪里可能是一个大字符串?我需要帮助。
这是我的代码
client.get(
"http://website.com/users.php?task=addGeneralSettings&userID="
+ user.getUserID() + "&vat="
+ URLEncoder.encode(String.valueOf(user.getVat()))
+ "&company=" + URLEncoder.encode(user.getCompany())
+ "&address1=" + URLEncoder.encode(user.getAddress1())
+ "&address2=" + URLEncoder.encode(user.getAddress2())
+ "&telephone=" + user.getTelephone() + "&fax="
+ user.getFax() + "&email=" + user.getEmail()
+ "&website=" + URLEncoder.encode(user.getWebsite())
+ "&vatNum=" + URLEncoder.encode(user.getVatno())
+ "&CompanyReg="
+ URLEncoder.encode(user.getCompanyNum()) + "&logo="
+ (user.getLogo()), new AsyncHttpResponseHandler() {
public void onSuccess(String response) {
Log.v("web response ", response);
try {
json = new JSONObject(response);
if (json.getBoolean("status")) {
delegate.settingsAdded(user.getLogo());
}
} catch (JSONException e) {
e.printStackTrace();
}
}
});
getLogo() 是我的 base64 字符串。长度很大。我正在使用以下代码将图像转换为 Base64 字符串。
public static String encodeTobase64(Bitmap image) {
Bitmap immagex = image;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
immagex.compress(Bitmap.CompressFormat.JPEG, 80, baos);
byte[] b = baos.toByteArray();
String imageEncoded = Base64.encodeToString(b, Base64.DEFAULT);
return imageEncoded;
}