- 论坛徽章:
- 0
|
在J2ME网络编程中使用CMWAP代理
在中国移动提供的网络连接中,分为CMNET和CMWAP两种,其中CMNET可以无限制的访问互联网络,资费比较贵。CMWAP类似一个HTTP的代码,只能访问支持HTTP的应用,但是资费便宜,稳定性比较差。
在实际的J2ME网络编程中,一般需要提供以CMWAP代理的方式连接网络,在J2ME中,连接的代码和直接连接有所不同,代码如下:HttpConnection http = (HttpConnection)Connector.open(("http://10.0.0.172/"+url);
例如你需要访问的地址为:http://www.test.com/login/loginServlet
则上面的代码就为:HttpConnection http = (HttpConnection)Connector.open((http://10.0.0.172/+”login/loginServlet);
在实际使用过程中,只需要使用实际需要访问的地址的域名或者IP来代替ServerName,例如示例中的“www.test.com”,使用后续的地址类代替代码中的url,例如示例中的“login/loginServlet”,就可以实际的使用CMWAP代理来进行连接了。
ry
{
MCCobj.sendInformation( "连接服务器中... ");
//
HttpConnection conn = (HttpConnection) Connector.open( "http://10.0.0.172:80/ "+ "test/test.php ",Connector.READ,true);
conn.setRequestProperty( "X-Online-Host ", "www.mystep.org:8080 ");
conn.setRequestProperty( "Accept ", "*/* ");
//
conn.setRequestMethod(HttpConnection.POST);
//conn.setRequestProperty( "User-Agent ", "Profile/MIDP-2.0 Configuration/CLDC-1.0 ");
int responseCode = conn.getResponseCode();
if (responseCode != HttpConnection.HTTP_OK)
{
MCCobj.sendInformation( "连接出错1... ");
}
//
DataInputStream dis = conn.openDataInputStream();
MCCobj.displayResult(dis);//用于读返回数据的
dis.close();
conn.close();
} catch (IOException ex)
{
ex.printStackTrace();
MCCobj.sendInformation( "连接出错2... ");
}
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/5087/showart_522677.html |
|