解析收到的GCM消息

时间:2013-05-24 20:06:23

标签: java android json google-cloud-messaging

我一直在尝试从收到的GCM消息中提取信息。这是从我的服务器发送的消息:

 "Message(data: {profile={"id":"214","name":"Dr Who","phone_number":"214"}})"

在手机上收到的消息:

05-24 21:00:26.083: D/GCMIntentServiceReceived Message:(3929): Received Message: Message(data: {profile={"id":"214","name":"Dr Who","phone_number":"214"}})

这是我用来尝试提取键/值对的代码。

@Override
    protected void onMessage(Context arg0, Intent intent) {

        String message = intent.getStringExtra("message");
        JsonParser parser = new JsonParser();
        JSONFingerprint fingerprintProfile = null;

        Log.d(TAG + "Received Message: ", "Received Message: " + message.toString());

        //System.out.println("PHONE " + intent.getExtras().getString("id")); This returns null


    }

我试图在这个例子中提取“id”字段,但我总是得到NULL。有人有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:1)

'id'是封装在String消息中的JSON的一部分。您应该将String消息转换为JSON对象,然后检索“id”。

String[] parts = message.split("=");
try {
JSONObject object = new JSONObject(parts[1].substring(0, parts[1].length() - 2));
String id = object.getString("id");
} catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

请注意上面的代码非常非泛型。您应该尝试从服务器发送一个干净的json-string并跳过字符串切割位。