APN没有指定?

时间:2011-04-11 11:27:12

标签: blackberry

我创建了httpConnection,但是在运行应用程序时它会给出以下异常吗?

java.io.IOException的 APN未指定?

2 个答案:

答案 0 :(得分:4)

我认为查看开发人员知识库文章:链接可以解决您的问题 http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is_-_Different_ways_to_make_an_HTTP_or_socket_connection.html?nodeid=826935&vernum=0

另见示例代码

private static String getConnectionString(){
    String connectionString="";
    if(WLANInfo.getWLANState()==WLANInfo.WLAN_STATE_CONNECTED){
        connectionString="?;interface=wifi";
    }

    else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS){
         connectionString = "?;&deviceside=false";
    }
    else if((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_DIRECT)==CoverageInfo.COVERAGE_DIRECT){
        String carrierUid=getCarrierBIBSUid();
        if(carrierUid == null) {
            connectionString = "?;deviceside=true";
        }
        else{
            connectionString = "?;deviceside=false?;connectionUID="+carrierUid + "?;ConnectionType=mds-public";
        }               
    }
    else if(CoverageInfo.getCoverageStatus() == CoverageInfo.COVERAGE_NONE) {          
            }
        return connectionString;
    }

答案 1 :(得分:0)

更重要的是,

http://supportforums.blackberry.com/t5/Java-Development/How-to-get-APN-Settings/td-p/1704995

完全不可能将APN设置放在您的网址中,例如。无法获取用户名和密码。