gpt4 book ai didi

java - 无法解释来自 GCM 的消息

转载 作者:行者123 更新时间:2023-12-01 12:47:01 25 4
gpt4 key购买 nike

我正在尝试了解 GCM 的工作原理。为此,我复制/粘贴 http://developer.android.com/ 的代码在“实现 GCM 客户端”部分中提出。

我现在没有服务器,所以这只是我从 eclipse 发送的 http 请求。

这是请求:

HttpEntity entity = new ByteArrayEntity(contenu.getBytes("UTF-8"));
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(this.getAdresse());
post.addHeader("Authorization", "key=AIzaSyANnvuPYJaSIDM7gorqdKh25uvpNA-4rvk");
post.addHeader("Content-Type", "application/json");
post.setEntity(entity);

HttpResponse response = client.execute(post);

其中“contenu”是这个字符串:

{ "data": {
"message":"hello"
},
"registration_ids": ["4", "8", "15", "16", "23", "42"]
}

在我的客户端应用程序上,我有这个 IntentService(在开发人员网站上找到):

package com.test.testnotification3;

import com.google.android.gms.gcm.GoogleCloudMessaging;
import com.test.testnotification3.R;

import core.GcmBroadcastReceiver;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.SystemClock;
import android.support.v4.app.NotificationCompat;
import android.util.Log;

public class GcmIntentService extends IntentService {
public static final int NOTIFICATION_ID = 1;
private NotificationManager mNotificationManager;
NotificationCompat.Builder builder;
static final String TAG = "GCMDemo";

public GcmIntentService() {
super("GcmIntentService");
}

@Override
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);

// The getMessageType() intent parameter must be the intent you received
// in your BroadcastReceiver.
String messageType = gcm.getMessageType(intent);



if (!extras.isEmpty()) { // has effect of unparcelling Bundle
/*
* Filter messages based on message type. Since it is likely that GCM
* will be extended in the future with new message types, just ignore
* any message types you're not interested in, or that you don't
* recognize.
*/
if (GoogleCloudMessaging.
MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
sendNotification("Send error: " + extras.toString());
} else if (GoogleCloudMessaging.
MESSAGE_TYPE_DELETED.equals(messageType)) {
sendNotification("Deleted messages on server: " +
extras.toString());
// If it's a regular GCM message, do some work.
} else if (GoogleCloudMessaging.
MESSAGE_TYPE_MESSAGE.equals(messageType)) {



Log.i(TAG, "Completed work @ " + SystemClock.elapsedRealtime());
// Post notification of received message.
sendNotification("Received: " + extras.toString());
Log.i(TAG, "Received: " + extras.toString());
}
}
// Release the wake lock provided by the WakefulBroadcastReceiver.
GcmBroadcastReceiver.completeWakefulIntent(intent);
}

// Put the message into a notification and post it.
// This is just one simple example of what you might choose to do with
// a GCM message.
public void sendNotification(String msg) {
mNotificationManager = (NotificationManager)
this.getSystemService(Context.NOTIFICATION_SERVICE);

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, MainActivity.class), 0);
long[] pattern = {0,1000};

NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Coucou Matthieu")
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(msg))
.setContentText(msg)
.setVibrate(pattern);

mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
}

我在 Logcat 中收到此消息:

07-06 19:26:15.627: I/GCMDemo(5095): Received: Bundle[{msg=hello,     android.support.content.wakelockid=1, collapse_key=do_not_collapse, from=472226063168}]

所以我的问题是:如何获取“msg”字段?

感谢您的回答!

最佳答案

您可以从与Intent关联的Bundle中获取数据。在这种情况下,由于它是一个字符串,因此您可以调用 getString() 并传递正确的 key ("msg"):

Bundle extras = intent.getExtras();
String msg = extras.getString("msg");

您可以在知道 GCM 消息属于消息类型的分支中执行此操作:

Bundle extras = intent.getExtras();

...

} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
String msg = extras.getString("msg");
// Do something with msg
}

关于java - 无法解释来自 GCM 的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24598469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com