web-dev-qa-db-ja.com

文字列から\をすべて削除します

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\"}]"

さて、文字列をよく見ると、すべての\"の代わりに"が含まれていることに気付くでしょう。 。現在、文字列をJSONArrayにフォーマットすることはできません。ですから、\"のすべての出現を"に置き換える必要があります。\escape sequenceではありません。

次のコードを使用してみました。

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();
    }
}
20
Swayam

これを試して:

_String jsonFormattedString = jsonStr.replaceAll("\\\\", "");
_

バックスラッシュは正規表現内のエスケープ文字であるため(replaceAll()はパラメーターとしてエスケープ文字を受け取ります)、エスケープする必要もあります。

29
Óscar López

実際には正しい方法は次のとおりです。

_String jsonFormattedString = jsonStr.replace("\\\"", "\"");
_

_\"_のみを_"_で置き換え、すべての_\_をnothingで置き換えたいわけではありません(jsonストリングがある場合、スラッシュを使い果たしてしまいます)。 replace(...)は、replaceAll(...)と同様に、指定された文字列のすべての出現を置き換えますが、正規表現を使用しないため、通常は高速です。

13

入力文字列は二重にJSONエンコードされているようです。デコードしてから、もう一度デコードする必要があります。

Javaでそれをどのように行うかについての最良の推測を次に示します。

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

ここでは、JSONStringがタイプであると仮定しています。実際のソリューションは異なる場合があります。

通常の状況では、サービスがJSONを直接提供することを期待しています。このサービスは含む JSONの文字列(JSON仕様に従ってエンコードされた)を提供しているようです。

次の違いです。

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

余分な先頭と末尾の引用符に注意してください?後者はJSONの文字列だからです。実際のオブジェクトを取得するには、2回デコードする必要があります。

5
jimbo

使用するだけ:

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

ドキュメントを参照

4
Alex Kucherenko

あなただけを使用することができます:

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

replaceは文字列をパラメーターとして受け取り、replaceAllはRegExを使用します。次のように機能する場合もあります。

str.replaceAll("\\\\", "");
3
d.raev
jsonObj.toString()
        .replace("\"[", "[").replace("]\"", "]")
        .replace("\\\"{", "{").replace("}\\\"", "}")
        .replace("\\\\\\\"", "\"")