25

我正在尝试使用 JSON 从服务器获取一组对象。

服务器向我发送以下字符串。

"[{\"DealComment\":null,\"DealVotes\":[],\"DealId\":1,\"CompanyId\":1,\"StartDate\":\"2012-12-13T00:00:00\",\"EndDate\":\"2012-12-16T00:00:00\",\"CouponCode\":\"Test Coupon 1\",\"Description\":\"Test Deal Description 1\",\"VoteUp\":null,\"VoteDown\":null,\"ViewCount\":null,\"Title\":\"Test Deal 1\"},{\"DealComment\":null,\"DealVotes\":[],\"DealId\":2,\"CompanyId\":1,\"StartDate\":\"2012-12-16T00:00:00\",\"EndDate\":\"2012-12-17T00:00:00\",\"CouponCode\":\"Test Coupon 2\",\"Description\":\"Test Description 2\",\"VoteUp\":null,\"VoteDown\":null,\"ViewCount\":null,\"Title\":\"Test Deal 2\"},{\"DealComment\":null,\"DealVotes\":[],\"DealId\":3,\"CompanyId\":1,\"StartDate\":\"2012-12-14T00:00:00\",\"EndDate\":\"2012-12-15T00:00:00\",\"CouponCode\":\"Test Code 3\",\"Description\":\"Test Description 3\",\"VoteUp\":null,\"VoteDown\":null,\"ViewCount\":null,\"Title\":\"Test Deal 3\"},{\"DealComment\":null,\"DealVotes\":[],\"DealId\":4,\"CompanyId\":1,\"StartDate\":\"2012-12-12T00:00:00\",\"EndDate\":\"2012-12-13T00:00:00\",\"CouponCode\":\"Test Coupon 4\",\"Description\":\"Test Description 4\",\"VoteUp\":null,\"VoteDown\":null,\"ViewCount\":null,\"Title\":\"Test Deal 4\"},{\"DealComment\":null,\"DealVotes\":[],\"DealId\":5,\"CompanyId\":2,\"StartDate\":\"2012-12-12T00:00:00\",\"EndDate\":\"2012-12-14T00:00:00\",\"CouponCode\":\"AwD\",\"Description\":\"Very awesome deal!\",\"VoteUp\":null,\"VoteDown\":null,\"ViewCount\":null,\"Title\":\"Awesome Deal 1\"}]"

现在,如果您仔细查看字符串,您会注意到它包含 an\"而不是 every "。该字符串现在无法格式化为 JSONArray。所以,我需要替换每一个出现的\"with ",这将是一个非常简单的任务,而\不是一个转义序列

我尝试使用以下代码。

String jsonFormattedString = jsonStr.replaceAll("\\", "");

但它给了我以下例外。

12-19 00:35:59.575: W/System.err(444): java.util.regex.PatternSyntaxException: Syntax error U_REGEX_BAD_ESCAPE_SEQUENCE near index 1:
12-19 00:35:59.575: W/System.err(444): \
12-19 00:35:59.575: W/System.err(444):  ^

我的整个代码,以防万一:

public void getAllDealsFromServerJson()
{

    String apiUrl = "http://passme.azurewebsites.net/api/TestApi/";


    HttpClient client = new DefaultHttpClient();
    HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
    HttpResponse response;
    JSONObject json = new JSONObject();

    try{
        HttpPost httpPost = new HttpPost(apiUrl);
        json.put("requestType", "getalldeals" );

        StringEntity se = new StringEntity( json.toString());  
        se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
        httpPost.setEntity(se);
        response = client.execute(httpPost);
        Log.d("Http Response:", response.toString());
        jsonResponse = response.toString();

        BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
        String jsonStr = reader.readLine();
        Log.d("String Response", jsonStr);
        String jsonFormattedString = jsonStr.replaceAll("\\", ""); // gives error
        Log.d("Formatted String", jsonFormattedString);
        //JSONTokener tokener = new JSONTokener(jsonFormattedString);
        /*JSONObject finalResult = new JSONObject(tokener);
        Log.d("JSON Response", "" + finalResult.optString("Title"));*/
        JSONArray resultArray = new JSONArray(jsonFormattedString);
        Log.d("JSON Array Result Length", "" + resultArray.length());
        Log.d("JSON Array Result ", "" + resultArray.getJSONObject(0).optInt("DealId"));

    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
}
4

6 回答 6

47

试试这个:

String jsonFormattedString = jsonStr.replaceAll("\\\\", "");

因为反斜杠是正则表达式中的转义字符(replaceAll()接收一个作为参数),它也必须被转义。

于 2012-12-18T19:19:02.617 回答
16

实际上正确的方法是:

String jsonFormattedString = jsonStr.replace("\\\"", "\"");

您只想替换\"",而不是全部\替换(如果有的,它会耗尽 json 字符串中的斜杠)。与流行的相信相反,它replace(...)也会替换所有出现的给定字符串,就像replaceAll(...),它只是不使用正则表达式,因此通常更快。

于 2012-12-18T19:33:20.383 回答
10

只需使用:

try {
        jsonFormattedString = new JSONTokener(jsonString).nextValue().toString();
    } catch (JSONException e) {
        e.printStackTrace();
    }

查看文档

于 2014-09-25T08:51:09.947 回答
6

看起来您的传入字符串是双重 JSON 编码的。您应该对其进行解码,然后再次对其进行解码。

这是我对如何在 Java 中做到这一点的最佳猜测:

JSONArray resultArray = new JSONArray(new JSONString(jsonFormattedString));

我假设这JSONString是一种类型。您的实际解决方案可能会有所不同。

在正常情况下,我希望服务能够直接为您提供 JSON。该服务似乎为您提供了一个包含JSON 的字符串(根据 JSON 规范编码)。

这是以下之间的区别:

String someJSON = "[0, 1, 2]";
String doublyEncodedJSON = "\"[0, 1, 2]\"";

注意额外的前导和尾随引号?那是因为后者是一串 JSON。您必须对其进行两次解码才能获得实际对象。

于 2012-12-18T19:20:32.887 回答
4

您可以使用:

str.replace("\\","");

replace 将字符串作为参数,replaceAll 使用正则表达式。它也可能像这样工作:

str.replaceAll("\\\\", "");
于 2012-12-18T19:32:51.013 回答
0
jsonObj.toString()
        .replace("\"[", "[").replace("]\"", "]")
        .replace("\\\"{", "{").replace("}\\\"", "}")
        .replace("\\\\\\\"", "\"")
于 2017-05-12T12:15:40.600 回答