CMNET和CMWAP GPRS 连接

1。CNNET,这个就不用怎么样介绍了,跟电脑上Internet没什么区别。
直接用这个这样的代码就Ok了

java 代码



try { 
              http = (HttpConnection) Connector.open(url); 
         } catch (IOException e) { 
           
             e.printStackTrace(); 




2。CNWAP,这个我的实践结果根网上的很多介绍不同。看下面这段文字。下面摘自。在J2ME中使用CNWAP接入点联网

都是中国移动搞出来的事情。

所以对于特定的一些机型,普通的直接联网方式会出现连不上网络,这是因为你的手机设备不支持CNNET的联网方式。也许你会发现不经过修改,直接连接的方式也可以在一些cnwap的设备上(只支持cnwap的多为低端机)运行,这个是因为设备上应中国一定的要求,在系统底层进行了转换,如果没有转换的话,就必须你自己手动在代码里面显式的来转换了。



这里我只打算给出一些示意代码,用来辅助说明解决问题的方法



假设你原来要请求的页面是:htpp://www.testwap.com/test/try.jsp

那么你会用这句话连接

HttpConnection httpConnection = (HttpConnection)Connector.open(“http://www.testwap.com/test/try.jsp”);



但是为了转成CNWAP的联网形式 你必须这么写

HttpConnection httpConnection = (HttpConnection)Connector.open(“http://10.0.0.172:80/test/try.jsp”);

接着再写

httpConnection.setRequestProperty("X-Online-Hostwww.testwap.com");
httpConnection.setRequestProperty("Accept","*/*");

这样就ok了



不过这个方法在模拟器上没办法测试,因为模拟器移动网关不让你进啊,所以写代码的时候用cnnet的正式发布的时候改成cnwap的。很麻烦
代码是
http =(HttpConnection)Connector.open("http://10.0.0.172:80/"+url,Connector.READ,true); 
c.setRequestProperty("X-Online-Host",ServerName); 
c.setRequestProperty("Accept", "*/*"); 

上面的代码CNNET我试过,因为我那个足球项目需要采用Scoket,确实是只有CNNet能打开Socket。
第二种,我却意外发现,我开发WapExporer进行测试的时候,我没有采用代理,也可以获取连接。
分析有以下几种可能。
1.移动那边可能对于CNNET来说,几乎是对所有的协议进行开放。比如(Socket,Http)跟所有端口。
2.对于CNWAP,我估计只开放http协议以及80端口,其他的都封闭,也就是CNWAP只能访问http协议。
   由于我测试的IP地址进行测试,所以它可以直接找到。对于非IP地址我没测试果。也许CNWAP不能解释域名也说不定,这点我就不清楚了。
例子:

import java.io.IOException;

import java.io.InputStream;

import javax.microedition.io.Connector;

import javax.microedition.io.HttpConnection;

import javax.microedition.lcdui.Command;

import javax.microedition.lcdui.CommandListener;

import javax.microedition.lcdui.Display;

import javax.microedition.lcdui.Displayable;

import javax.microedition.lcdui.Form;

import javax.microedition.lcdui.Image;

import javax.microedition.lcdui.StringItem;

import javax.microedition.midlet.MIDlet;

/**

* HttpDemo

*
* @author kf156(亚日)

*
*/

public class HttpTest extends MIDlet implements CommandListener, Runnable {

public static final byte WAIT = 0;// 等待

public static final byte CONNECT = 1;// 连接中

public static final byte SUCCESS = 2;// 成功

public static final byte FAIL = 3;// 失败

int state;// 当前状态

Display display = Display.getDisplay(this);

Form form = new Form("HttpTest");

boolean cmnet = true;// 接入点为cmnet还是cmwap

StringBuffer sb = new StringBuffer("当前接入方式为:CMNET\n");

StringItem si = new StringItem(null, sb.toString());

Command connect = new Command("联网", Command.OK, 1);

Command change = new Command("改变接入点方式", Command.OK, 2);

Command exit = new Command("退出", Command.EXIT, 1);

HttpConnection http;

String host = "wiki.huihoo.com";

String path = "/images/9/9c/Java.gif";

public HttpTest() {

  state = WAIT;// 等待状态

  form.append(si);

  form.addCommand(connect);

  form.addCommand(change);

  form.addCommand(exit);

  form.setCommandListener(this);

}

protected void destroyApp(boolean b) {

}

protected void pauseApp() {

}

protected void startApp() {

  display.setCurrent(form);

}

public void commandAction(Command c, Displayable d) {

  if (c == change) {// 改变接入点

   if (isConnect())

    return;

   cmnet = !cmnet;

   form.deleteAll();

   sb.delete(0, sb.length());

   addStr("当前接入方式为:" + (cmnet ? "CMNET" : "CMWAP"));

   form.append(si);

  } else if (c == connect) {// 联网

   if (isConnect())

    return;

   new Thread(this).start();

  } else if (c == exit) {// 退出

   destroyApp(true);

   notifyDestroyed();

  }

}

public void run() {

  form.deleteAll();

  sb.delete(0, sb.length());

  addStr("当前接入方式为:" + (cmnet ? "CMNET" : "CMWAP"));

  form.append(si);

  state = CONNECT;

  addStr("网络连接中...");

  InputStream is = null;

  try {

   String url = null;

   url = cmnet ? ("http://" + host + path)

     : ("http://10.0.0.172:80" + path);

   http = (HttpConnection) Connector.open(url, Connector.READ_WRITE,

     true);

   if (!cmnet)

    http.setRequestProperty("X-Online-Host", host);

   http.setRequestMethod(HttpConnection.GET);

   String contentType = http.getHeaderField("Content-Type");

   System.out.println(contentType);

   addStr(contentType);

   if (contentType != null

     && contentType.indexOf("text/vnd.wap.wml") != -1) {// 过滤移动资费页面

    addStr("移动资费页面,过滤!");

    http.close();

    http = null;

    http = (HttpConnection) Connector.open(url,

      Connector.READ_WRITE, true);

    if (!cmnet)

     http.setRequestProperty("X-Online-Host", host);

    http.setRequestMethod(HttpConnection.GET);

    contentType = http.getHeaderField("Content-Type");

   }

   addStr("Content-Type=" + contentType);

   int code = http.getResponseCode();

   addStr("HTTP Code :" + code);

   if (code == 200) {

    addStr("网络联网成功,接收数据...");

    is = http.openInputStream();

    Image image = Image.createImage(is);

    addStr("数据接收完毕,显示图片");

    form.append(image);

    // 普通字节数据接收

    // byte[] b = new byte[1024];

    // int len = 0;

    // ByteArrayOutputStream baos = new ByteArrayOutputStream();

    // DataOutputStream dos = new DataOutputStream(baos);

    // while ((len = is.read(b)) != -1) {

    // dos.write(b, 0, len);

    // }

    // dos.close();

    // dos = null;

    // is.close();

    // is = null;

    state = SUCCESS;

    return;

   } else {

    addStr("访问页面失败");

   }

  } catch (IOException e) {

   addStr("联网发生异常:" + e.toString());

   e.printStackTrace();

  } catch (Exception e) {

   addStr("发生异常:" + e.toString());

   e.printStackTrace();

  } finally {

   if (is != null) {

    try {

     is.close();

    } catch (IOException e) {

     e.printStackTrace();

    }

    is = null;

   }

   if (http != null)

    try {

     http.close();

    } catch (IOException e) {

     e.printStackTrace();

    }

   http = null;

  }

  state = FAIL;

}

/**

  * 判断是否正在连接

  *
  * @return

  */

private boolean isConnect() {

  if (state == CONNECT) {

   addStr("网络连接中,请稍候...");

   return true;

  }

  return false;

}

/**

  * 添加文字

  *
  * @param str

  *            要添加的文字

  */

private void addStr(String str) {

  sb.append(str + "\n");

  si.setText(sb.toString());

}

}

你可能感兴趣的:(WAP)