PassBiBle.Com
国际IT认证代考网
繁体 English Site-Map
代考首页 代考价格 代考流程 信誉评价 证书查询 题库下载 代考论坛 试题宝典 关于我们
CCNA 专题 MCSE 专题 ORACLE 专题 CISCO认证 MICROSOFT LPI认证 CIW认证 SUN认证 IBM认证
代 考 联 系
Mail:
PassBiBle(at)PassBiBle.Com
Msn :
pass_bible(at)hotmail.com推荐
passbible(at)hotmail.com已满
QQ : 80238333 推荐
QQ : 6411019 已满
最 新 文 章
·SUN正式发布Java API文档中文
·Sun JES服务器软件已支持更多
·Sun称Java企业系统支持Windo
·Sun年底推Solaris 10第一个升
·Sun依据Apache开源授权发表J
·5万网站推动PHP 挑战Java企业
·Sun复兴2大支柱:x86、Sparc
·Sun重整旗鼓 软件开源收购三
·IBM向Eclipse捐献代码 推广软
·Apache Tomcat 发布5.5.12 S
热 门 文 章
·澄清 Java 的接口与继承机制
·用hbm2java生成Hibernate类
·Java桌面应用程序设计:SWT简
·SCJP考试题310-025(第二套<4
·SCJP考试题310-025(第二套<3
·SCJP考试题310-025(第二套<2
·SUN 资讯新动态
·在J2ME中实现基于UDP协议通讯
·技术新知:AJAX基础教程
·如何从MIDlet中调用JSP页面

如何从MIDlet中调用JSP页面

  首先,我将讨论一下HttpConnection接口,这个接口可以用来建立Http连接

  HttpConnection 接口

  Connected Limited Device Configuration(有限连接设备配置。简称CLDC)提供了一套用于网络连接的类,就是普通连接框架。一种平台独立连接框架,提供了一种分层的连接接口,它的实现操作系统由具体的设备简表提供(比如Mobile Information Device Profile(MIDP))。

  MIDP通过提供支持HTTP的HttpConnection 框架来实现扩展CLDC的一般连接框架的作用。所有MIDP的应用程序实现都要求支持HTTP,这主要是因为HTTP即可以通过使用基于IP的协议(如TCP/IP)也可以通过使用非IP协议(如WAP)来实现。

  所有的连接都是使用Connector类的open()方法来创建的,如果连接成功的话,这个方法就返回一个实现某种普通连接借口的对象,举一个例子吧,下面的代码段可以用来打开一个到某个URL的HTTP连接。

  String url = "http://www.ora.com/whatif.jsp";;

  HttpConnection connection = Connector.open(url);

  一旦一个连接被建立后,就可以设置属性了,然后就可以建立I/O流来发送或接收数据。举个例子,请看下面的这一小段代码,用来设置属性并建立输入/输出流。 // 设置 HTTP 属性

  connection.setRequestMethod(HttpConnection.POST);

  connection.setRequestProperty("IF-Modified-Since","22 Dec 2001 16:33:19 GMT");

  connection.setRequestProperty("User-Agent","Profile/MIDP-1.0 Configuration/CLDC-1.0");

  connection.setRequestProperty("Content-Language", "en-CA");

  // 创建I/O流

  InputStream is = connection.openInputStream();

  OutputStream os = connection.openOutputStream();

 下面让我们来研究一个例子,了解一下如何从MIDlet中调用JSP,我们调用JSP页面代码的程序段1如下所示:

   代码1:

today.jsp

<%! String name; %>

<%

  name = request.getParameter("name");

  java.util.Date today = new java.util.Date();

  out.println("Got: "+name);

  out.println("Date&time: "+today);

%>

  这个JSP里面希望取得一个名为name 的变量的值,一旦这个值被取得,就会创建一个Date的实例,然后name和date的值就会被打到客户端中的输出流中。

   现在,让我们看看如何写一个MIDlet来调用这个JSP页面,我们将使用POST请求方法来调用它,这就意味着被传送到JSP页面的数据不是使用URL编码的,而是以一段单独的信息传入,这段MIDlet代码如代码段2所示。

  代码2:

InvokeJSPMidlet.java

import javax.microedition.lcdui.*;

import javax.microedition.midlet.*;

import javax.microedition.io.*;

import java.io.*;

public class InvokeJSPMidlet extends MIDlet implements CommandListener {;

Display display = null;

// name 字段

TextField name = null;

form form;

String url = "http://127.0.0.1:8080/examples/jsp/today.jsp";;

static final Command callCommand = new Command("date?", Command.OK, 2);

static final Command clearCommand = new Command("clear", Command.STOP, 2);

String myname;

public InvokeJSPMidlet() {;

display = Display.getDisplay(this);

name = new TextField("Name:", " ", 25, TextField.ANY);

form = new form("Invoke JSP");

};

public void startApp() throws MIDletStateChangeException {;

form.append(name);

form.addCommand(clearCommand);

form.addCommand(callCommand);

form.setCommandListener(this);

display.setCurrent(form);

};

public void pauseApp() {;

};

public void destroyApp(boolean unconditional) {;

notifyDestroyed();

};

void invokeJSP(String url) throws IOException {;

HttpConnection c = null;

InputStream is = null;

OutputStream os = null;

StringBuffer b = new StringBuffer();

TextBox t = null;

try {;

  c = (HttpConnection)Connector.open(url);

  c.setRequestMethod(HttpConnection.POST);

  c.setRequestProperty("IF-Modified-Since", "29 Dec 2001 15:17:19 GMT");

  c.setRequestProperty("User-Agent","Profile/MIDP-1.0 Configuration/CLDC-1.0");

  c.setRequestProperty("Content-Language", "en-CA");

  c.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");

  os = c.openOutputStream();

  os.write(("name="+myname).getBytes());

  os.flush();

  is = c.openDataInputStream();

  int ch;

  while ((ch = is.read()) != -1) {;

b.append((char) ch);

System.out.print((char)ch);

  };

  t = new TextBox("Date", b.toString(), 1024, 0);

  t.setCommandListener(this);

  }; finally {;

  if(is!= null) {;

is.close();

  };

  if(os != null) {;

os.close();

  };

  if(c != null) {;

c.close();

  };

};

display.setCurrent(t);

};

public void commandAction(Command c, Displayable d) {;

  String label = c.getLabel();

  if(label.equals("clear")) {;

destroyApp(true);

  }; else if (label.equals("date?")) {;

myname = name.getString();

  try {;

invokeJSP(url);

  };catch(IOException e) {;};

  };

};

};

  InvokeJSPMidlet代码指定了要被调用的JSP页面的URL,然后就创建了两个命令按钮,然后创建一个text字段,可以让用户在里面输入姓名。在InvokeJSP()方法中,将建立一个到这个URL的HTTP连接,然后再建立I/O流,MIDlet使用输出流来发送数据到JSP页面,接着再使用输入流从JSP页面中接收数据,注意,在本例中我们将发送姓名到JSP页面中,其实它也只是向你演示一下数据如何在MIDlet和页面之间流通。

  在代码段2中,应当注意的事情是为了使JSP页面使用getParameter()从name变量中取得数据的值,你必须设置Content-Type属性为application/x-www-form-urlencoded.

  小结

  本文只是演示如何从MIDlet中调用JSP页面,InvokeJSPMidlet还可以很容易的修改来实现调用其他的JSP的目的。但是注意,JSP主要和HTML配合使用,但是如果你的移动设备中的浏览器不能处理HTML的话,那么XML也是一个非常好的选择,因为MIDlet可以解析XML文档。