我编写了对图像进行编码并将其发送到 wcf 的功能。嗯,不使用查询字符串参数。嗯,使用 URL 来传递参数。这是我的 android 代码,它工作正常。
public JSONUpdate(String jobNumber, String documentType,
String documentFilePath, String DocumentFileName,
String encodedImage, String url) {
this.url = url + jobNumber.trim() + "/" + documentType.trim() + "/"
+ documentFilePath.trim().replace("/", "___") + "/"
+ DocumentFileName.trim() + "/" + encodedImage;
}
public boolean updateService() {
boolean result = false;
HttpClient httpClient = new DefaultHttpClient();
try {
HttpPost httpPost = new HttpPost(this.url);
try {
HttpResponse httpResponse = httpClient.execute(httpPost);
if (httpResponse != null) {
if (httpResponse.getStatusLine().getStatusCode() == 200)
result = true;
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} catch (Exception ex) {
String p = ex.getLocalizedMessage();
String y = ex.getMessage();
}
if (!result) {
}
return result;
}
在我的 WCF 实现中,它也可以正常工作,除非每当我包含编码字符串参数时,它都会引发错误,因为编码字符串包含“+”和“\”。所以 URL 被破坏了。这是我的服务的 WCF 代码
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json,
UriTemplate = "attachment/{jobNumber}/{documentType}/{documentFilePath}/{DocumentFileName}/{encodedImage}",
BodyStyle = WebMessageBodyStyle.Bare)]
public bool InsertAttachment(String jobNumber, String documentType,
String documentFilePath, String documentFileName,
String encodedImage = null)
{
//implementation was written
}
如何使用 + 和 \ 安全地将编码的 64 位字符串作为参数传递?我对此没有太多经验。如果有人能给我建议,我将不胜感激。