我有一个可以将图像上传到WCF服务的Android程序。 WCF服务接受具有图像名称,文件夹名称和映像的base64编码的JSON对象。
我使用fiddler测试该服务,我从在线服务编码图像并将其放入对象中。然后组成一个POST请求;然后WCF服务成功上传了图片。
但是当我使用Android HTTP客户端并做同样的事情时,WCF会接受请求,但我不会识别图像。
这是我的Android代码:
try {
HttpPost httpPost=new HttpPost(this.remoteBasePath);
JSONObject obj = new JSONObject();
obj.put(FILE_NAME, fileName);
obj.put(FILE_STREAM,fileStream);
obj.put(FOLDER_NAME, remoteFolder);
httpPost.setHeader("Content-type", "application/json; charset=utf-8");
httpPost.setEntity(new StringEntity(obj.toString()));
httpPost.setHeader(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
httpResponse=httpClient.execute(httpPost);
if(httpResponse!=null){
TLLog.d(TAG,"StatusCode : "+ httpResponse.getStatusLine().getStatusCode());
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
InputStream instream = httpResponse.getEntity().getContent();
BufferedReader r = new BufferedReader(
new InputStreamReader(instream));
StringBuilder total = new StringBuilder();
String line;
while ((line = r.readLine()) != null) {
total.append(line);
}
instream.close();
String result = total.toString();
TLLog.d(TAG,"Image posting result : "+ result);
return true;
}
}
} catch (ClientProtocolException e) {
TLLog.e(TAG, e.getStackTrace().toString());
} catch (IOException e) {
TLLog.e(TAG, e.getStackTrace().toString());
} catch (JSONException e) {
e.printStackTrace();
}
我无法理解问题。
答案 0 :(得分:0)
大家好,我终于找到了问题。 问题是编码所以我使用从互联网上下载的类Base64.java。我使用以下方法进行编码
public static String encodeTobase64(Bitmap image) throws IOException
{
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.JPEG, 50, outputStream);
byte[] bs = outputStream.toByteArray();
String imageEncoded=Base64.encodeBytes(bs);
return imageEncoded;
}
并使用返回值作为文件流。所以我的问题就解决了。