JSON 形式のメッセージを作成して Tomcat サーバーに送信する Android デバイスがあります。サーバーは、この JSON 形式のメッセージを受信して処理する Java Web アプリケーションを実行しています。
私の問題は、メッセージがサーバーによって受信されると、サーバーが特定の文字 ( '{'、'['、'"'、']' および '}' ) を 16 進数表現のように見えるものに置き換えることです。サーバーがメッセージを認識しない JSON エラー。
私の質問は、この問題の原因と、これを修正する方法を誰かが知っているかどうかです (JSON コードではなく、送受信に関してメッセージが処理される方法であると確信しています)。
これが私のサーバー側のコードです:
@Override
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// Setup response
PrintWriter out = response.getWriter();
// Store input message as String
StringBuilder sb = new StringBuilder();
String message;
// Build String
while ((message = request.getReader().readLine()) != null) {
sb.append(message);
}
// Full message as String
message = sb.toString();
// Convert message to JSON format
Gson gson = new Gson();
ImageFeatures features = gson.fromJson(message, ImageFeatures.class);
out.println("Normal data: " + features);
out.println();
}
これが私が受け取っているエラーです:
com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 12
com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:176)
com.google.gson.Gson.fromJson(Gson.java:795)
com.google.gson.Gson.fromJson(Gson.java:761)
com.google.gson.Gson.fromJson(Gson.java:710)
com.google.gson.Gson.fromJson(Gson.java:682)
これは、Android デバイスがメッセージをサーバーに送信する前に生成される JSON 形式のメッセージです。
{
"image_x_size":800,
"image_y_size":1600,
"features":
[
{"cart_x":5.0,"cart_y":124.0,"polar_angle":0.0,"polar_dist":0.0,"size":15.0},
{"cart_x":5.0,"cart_y":124.0,"polar_angle":0.0,"polar_dist":0.0,"size":15.0}
]
}
これは、メッセージがサーバーによってどのように表示されるか (つまり、message
文字列の内容) です。
%7B+%09%22image_x_size%22%3A800%2C+%09%22image_y_size%22%3A1600%2C+%09%22features%22%3A+%09%09%5B+%09%09%09%7B%22cart_x%22%3A5.0%2C%22cart_y%22%3A124.0%2C%22polar_angle%22%3A0.0%2C%22polar_dist%22%3A0.0%2C%22size%22%3A15.0%7D%2C+%09%09%09%7B%22cart_x%22%3A5.0%2C%22cart_y%22%3A124.0%2C%22polar_angle%22%3A0.0%2C%22polar_dist%22%3A0.0%2C%22size%22%3A15.0%7D+%09%09%5D+%7D+
ご覧のとおり、メッセージ文字列には、特定の文字を置き換えるさまざまな 16 進数値があります。
よろしくお願いします!
編集:さらに明確にするために、Androidコードを含める必要があると思いました
HttpClient http_client = new DefaultHttpClient();
// Set long timeout limit
HttpConnectionParams.setConnectionTimeout(http_client.getParams(), 10000);
HttpConnectionParams.setSoTimeout(http_client.getParams(), 10000);
HttpResponse response;
// Setup json_object
JSONObject json_object = convertImageFeaturesToJSON(data, x, y);
try {
HttpPost http_post = new HttpPost(URL_BASE + "/featureuploader");
Log.i(TAG, json_object.toString());
StringEntity se = new StringEntity(json_object.toString());
se.setContentType("application/json; charset=UTF-8");
se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE, "application/json; charset=UTF-8"));
http_post.setEntity(se);
http_post.setHeader("Accept", "application/json");
http_post.setHeader("Content-Type", "application/json");
response = http_client.execute(http_post);
if (response != null) {
String response_string = httpResponseToString(response.getEntity().getContent());
if (! response_string.startsWith("Received: <html>")) {
Log.i(TAG, "Received: ERROR! - " + response_string.substring(0, 20));
} else {
Log.i(TAG, "Received: " + response_string);
}
} else {
Log.e(TAG, "Did not receive from server");
}
} catch (Exception e) {
Log.e(TAG, "Error: " + e.getMessage());
}