我在实际设备中有一个关于互联网连接的问题。我使用Eclipse JDE开发我的Blackberry聊天应用程序,它在Blackberry Simulator(OS:4.7,5.0和6.0)上运行顺畅。但是当我签名并将其安装在真实设备中时。它总是声明:“没有互联网连接”。我检查了我的wifi和GPRS连接,它工作正常。
是否对使用部署在真实设备上的模拟器开发的互联网应用程序进行了调整?
答案 0 :(得分:2)
如果没有看到代码,我们无法找到此问题的实际原因。让我告诉你一个常见的原因
在连接字符串中,取决于状态add interface = wifi或deviceside = true。
HttpConnection connection = null;
if (WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED) {
connection = (HttpConnection) Connector.open(url+ ";interface=wifi",
Connector.READ_WRITE,true);
} else {
connection = (HttpConnection) Connector.open(url+";deviceside=true", Connector.READ_WRITE,true);
}