如何从MIDlet中调用JSP页面
2008-02-23 08:05:47来源:互联网 阅读 ()
首先,我将讨论一下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) {;};
};
};
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- J2ME开发中如何从MIDlet中调用JSP页面 2008-02-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash