黑莓 - 使用EDGE网的HttpConnection
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了黑莓 - 使用EDGE网的HttpConnection相关的知识,希望对你有一定的参考价值。
我想为黑莓应用程序做一个httpconnection。我正在使用网址
http://ip:port/prueba.php;deviceside=true
如果我想通过wifi将它用于设备,我添加interface = wifi。
但我不知道为什么它不通过EDGE连接。还有什么我可以做的吗?我听说你签署了申请,但我不明白。
答案
使用:“; deviceside = true; ConnectionUID =”+ srTCP.getUid()
private ServiceRecord srTCP;
private void init()
{
ServiceBook sb = ServiceBook.getSB();
ServiceRecord[] records = sb.getRecords();
for (int i = 0; i < records.length; i++)
{
ServiceRecord myRecord = records[i];
String cid, uid;
if (myRecord.isValid() && !myRecord.isDisabled())
{
cid = myRecord.getCid().toLowerCase();
uid = myRecord.getUid().toLowerCase();
if (cid.indexOf(WPTCP_STR) != -1 && uid.indexOf(WIFI_STR) == -1 && uid.indexOf(MMS_STR) == -1)
{
String httpProxyAddress = getDataString(myRecord, BYTE_PROXY_ADDRESS);
if ((httpProxyAddress == null) || StringUtils.isBlank(httpProxyAddress.trim()))
{
srTCP = myRecord;
}
}
}
}
}
以上是关于黑莓 - 使用EDGE网的HttpConnection的主要内容,如果未能解决你的问题,请参考以下文章