1

我正在尝试使用 Jersey 框架通过码头服务器连接到 Google Cloud Messaging(GCM)服务器。 它在调试模式下运行良好,但在我正常运行时失败。这是与 GCM 建立连接的代码:

WebResource r = client.resource("https://android.googleapis.com/gcm/send");
response = r.accept(
           MediaType.APPLICATION_JSON).
           header("Content-Length", ""+sPostData.length()).
           header("Authorization", "key="+sAPIKey).
           header("Keep-Alive", "false").
           entity(sPostData).
           post(String.class);
System.out.println("response:"+response);

控制永远不会出现在最后一行。 它在调试模式下运行良好,使用码头服务器的发布(运行)模式存在问题 有人可以就为什么会发生这种情况提出建议吗?请提供您对此的想法。

4

0 回答 0