- 浏览: 212271 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
fenglongcen:
java可以写测试脚本吗?
linux 通过脚本执行java程序 -
chensss2008:
我代为回答2楼的问题,呵呵,因为我也遇到了这个问题。使用adm ...
SVNManager使用介绍 -
小诗诗:
我想问一下怎么使用“服务器配置管理员”怎么登陆啊!!!! ...
SVNManager使用介绍 -
sbcqw93:
能创建文件夹吗?比如说:http://127.0.0.1/sv ...
SVNManager使用介绍 -
energykey:
yhjhoo 写道好像没有一个外部的jar包,请教以下如何在l ...
linux 通过脚本执行java程序
Cookie在Java ME平台中没有得到支持,因此要想维持客户端和服务器端的状态则必须要使用URL重写的方式.
Cookie的工作原理如图:
浏览器根据 域(domain) 和 路径(path) 检查是否有匹配的cookie,如果有则把cookie 以“名称 = 值” 的形式发送给服务器
获取(客户端) cookie 的方式:
J2ME中得到服务器端的cookie并保存到RMS中,下文代码的实现思路是:
1.打开RMS并读取RMS中是否存有cookie;
2.连接服务器,采用get请求,如果RMS中有cookie,那么设置
3.如果RMS中没有记录(cookie),那么将服务器端通过
J2ME中的核心代码:
服务器端的核心代码:
在J2ME中代码URL为我公司的URL,地址可能有变,希望大家在测试的时候,更改成自己服务器的地址就可以了。
程序运行成功后的部分截图:
手机模拟器第一次运行时出现上图所示,服务器端的截图如下:
第一次手机访问服务器时,服务器产生一个随机数(100以内的整数,当然也可以采用uuid)返回客户端。
手机模拟器第二次访问和服务器的截图:
Cookie的工作原理如图:
浏览器根据 域(domain) 和 路径(path) 检查是否有匹配的cookie,如果有则把cookie 以“名称 = 值” 的形式发送给服务器
获取(客户端) cookie 的方式:
HttpConnection.getHeaderField("set-cookie");
J2ME中得到服务器端的cookie并保存到RMS中,下文代码的实现思路是:
1.打开RMS并读取RMS中是否存有cookie;
2.连接服务器,采用get请求,如果RMS中有cookie,那么设置
http.setRequestProperty("cookie", cookie);,
3.如果RMS中没有记录(cookie),那么将服务器端通过
http.getHeaderField("set-cookie");得到的cookie保存到RMS中。
J2ME中的核心代码:
package com.easymorse; import java.io.ByteArrayOutputStream; 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.TextBox; import javax.microedition.midlet.MIDlet; import javax.microedition.rms.RecordStore; public class Cookie extends MIDlet implements CommandListener,Runnable{ private Display display; private TextBox tbMain; private Form fmMain; private Command cmExit; private Command cmLogon; private String cookie = null; private RecordStore rs = null; static final String REC_STORE = "rms_cookie"; private String url = "http://dev.mopietek.net:8080/cookieServer/cookieServlet"; //连接公司服务器地址 public Cookie() { display = Display.getDisplay(this); // Create commands cmExit = new Command("Exit", Command.EXIT, 1); cmLogon = new Command("Logon", Command.SCREEN, 2); // Create the form, add commands, listen for events fmMain = new Form(""); fmMain.addCommand(cmExit); fmMain.addCommand(cmLogon); fmMain.setCommandListener(this); // Read cookie if available openRecStore(); readCookie(); // System.out.println("Client cookie: " + cookie); } public void startApp() { display.setCurrent(fmMain); } public void pauseApp() { } public void destroyApp(boolean unconditional) { closeRecStore(); // Close record store } public void openRecStore() { try { // The second parameter indicates that the record store // should be created if it does not exist rs = RecordStore.openRecordStore(REC_STORE, true); } catch (Exception e) { db("open " + e.toString()); } } public void closeRecStore() { try { rs.closeRecordStore(); } catch (Exception e) { db("close " + e.toString()); } } /*-------------------------------------------------- * Write cookie to rms *-------------------------------------------------*/ public void writeRecord(String str) { byte[] rec = str.getBytes(); try { rs.addRecord(rec, 0, rec.length); } catch (Exception e) { db("write " + e.toString()); } } /*-------------------------------------------------- * Read cookie from rms *-------------------------------------------------*/ public void readCookie() { try { byte[] recData = new byte[25]; int len; if (rs.getNumRecords() > 0) { // Only one record will ever be written, safe to use '1' if (rs.getRecordSize(1) > recData.length) recData = new byte[rs.getRecordSize(1)]; len = rs.getRecord(1, recData, 0); /*rs.getRecord(arg0,arg1,arg2); //返回值是所复制的数据的字节数 第一个参数是读取数据库中的第几条,第二个参数是保存读取的数据(recData),第三个参数是指定数据写入(recData)中的起始位置索引 */ cookie = new String(recData); } } catch (Exception e) { db("read " + e.toString()); } } /*-------------------------------------------------- * Send client request and recieve server response * * Client: If cookie exists, send it to the server * * Server: If cookie is sent back, this is the * clients first request to the server. In * that case, save the cookie. If no cookie * sent, display server body (which indicates * the last time the MIDlet contacted server). *-------------------------------------------------*/ private void connect() throws IOException { InputStream iStrm = null; ByteArrayOutputStream bStrm = null; HttpConnection http = null; try { // Create the connection http = (HttpConnection) Connector.open(url); //---------------- // Client Request //---------------- // 1) Send request method http.setRequestMethod(HttpConnection.GET); // If you experience connection/IO problems, try // removing the comment from the following line //http.setRequestProperty("Connection", "close"); // 2) Send header information if (cookie != null) http.setRequestProperty("cookie", cookie); System.out.println("Client cookie: " + cookie); // 3) Send body/data - No data for this request //---------------- // Server Response //---------------- // 1) Get status Line if (http.getResponseCode() == HttpConnection.HTTP_OK) { // 2) Get header information String tmpCookie = http.getHeaderField("set-cookie"); System.out.println("server cookie: " + tmpCookie); // Cookie will only be sent back from server only if // client (us) did not send a cookie in the first place. // If a cookie is returned, we need to save it to rms if (tmpCookie != null) { writeRecord(tmpCookie); // Update the MIDlet cookie variable cookie = tmpCookie; fmMain.append("First visit\n"); fmMain.append("Client : " + cookie + "\n"); } else // No cookie sent from server { // 3) Get data, which is the last time of access iStrm = http.openInputStream(); int length = (int) http.getLength(); String str; if (length != -1) { byte serverData[] = new byte[length]; iStrm.read(serverData); str = new String(serverData); } else // Length not available... { bStrm = new ByteArrayOutputStream(); int ch; while ((ch = iStrm.read()) != -1) bStrm.write(ch); str = new String(bStrm.toByteArray()); } // Append data to the form fmMain.append("Last access:\n" + str + "\n"); } } } finally { // Clean up if (iStrm != null) iStrm.close(); if (bStrm != null) bStrm.close(); if (http != null) http.close(); } } /*-------------------------------------------------- * Process events *-------------------------------------------------*/ public void commandAction(Command c, Displayable s) { // If the Command button pressed was "Exit" if (c == cmExit) { destroyApp(false); notifyDestroyed(); } else if (c == cmLogon) { try { Thread t = new Thread(this); t.start(); } catch (Exception e) { db("connect " + e.toString()); } } } /*-------------------------------------------------- * Simple message to console for debug/errors * When used with Exceptions we should handle the * error in a more appropriate manner. *-------------------------------------------------*/ private void db(String str) { System.err.println("Msg: " + str); } public void run() { try { connect(); } catch (IOException e) { e.printStackTrace(); db("connect " + e.toString()); } } }
服务器端的核心代码:
package com.easymorse; import java.io.IOException; import java.io.PrintWriter; import java.util.Random; import javax.servlet.ServletException; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class CookieServlet extends HttpServlet { /** * Constructor of the object. */ public CookieServlet() { super(); } /** * Destruction of the servlet. <br> */ public void destroy() { super.destroy(); // Just puts "destroy" string in log // Put your code here } private static int[] clientIDs = {123,456,789,901,225,701}; private static final Random rand = new Random(); /** * The doGet method of the servlet. <br> * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("--------------------------------------------------------------------"); Cookie[] cookies = request.getCookies(); System.out.println("cookies=====>"+cookies); if(cookies != null){ Cookie theCookie = cookies[0]; System.out.println("theCookie------------->"+theCookie); String id = theCookie.getValue(); System.out.println("id=====>"+id); PrintWriter out = response.getWriter(); out.print("Cookie passwed in was: " + id); out.close(); }else{ System.out.println("没有cookie"); int random = rand.nextInt(100); Cookie cookie = new Cookie("ID",Integer.toString(random)); response.addCookie(cookie); } } public String getServletInfo(){ return "CookieTest"; } /** * The doPost method of the servlet. <br> * * This method is called when a form has its tag value method equals to post. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doGet(request, response); } /** * Initialization of the servlet. <br> * * @throws ServletException if an error occurs */ public void init() throws ServletException { // Put your code here } }
在J2ME中代码URL为我公司的URL,地址可能有变,希望大家在测试的时候,更改成自己服务器的地址就可以了。
程序运行成功后的部分截图:
手机模拟器第一次运行时出现上图所示,服务器端的截图如下:
第一次手机访问服务器时,服务器产生一个随机数(100以内的整数,当然也可以采用uuid)返回客户端。
手机模拟器第二次访问和服务器的截图:
发表评论
-
Lwuit---小细节疑难杂症整理
2010-05-04 17:41 14481、textArea 显示文本内容,在部分手机上无法显示全部内 ... -
Lwuit布局管理
2010-05-04 15:40 1642布局管理器中一个比较特殊的管理器CoordinateLa ... -
J2ME Socket编程
2010-04-25 23:35 4096Socket是套接字,它是基于TCP协议的传输。 在J2ME ... -
Alert用法
2010-04-08 18:21 3885在J2ME中,关于Alert类是用来向用户发出警告信息,一般A ... -
J2ME手机编程中使用字体与游戏键值
2010-03-25 10:02 1412J2me中关于字体Font类的介绍: Font fon ... -
J2me低级UI界面中Canvas类与GameCanvas类
2010-03-23 10:18 3367关于MIDlet类中destroyApp( ... -
J2ME从服务器解析并读取xml文件
2010-03-09 16:55 2225J2ME从服务器解析并读取xml文件,其实跟在本地读取xml文 ... -
J2me语言国际化
2010-03-04 16:39 1599J2me手机开发在早期的WTK没用jsr 238包,所以程序要 ... -
J2ME下载并读取服务器txt文件
2010-03-04 11:56 2059J2ME下载并读取服务器txt文件,我用的公司的服务器,大家如 ... -
J2ME解析并读取xml文件
2010-03-03 17:37 5782用KXML解析读取xml文本 首先需要kxml2-2.3.0. ... -
J2ME手机本地文件上传服务器
2010-02-23 10:20 2728J2ME手机本地存储文件的上传,核心代码如下: pac ... -
读取手机本地图片和文本文件(Lwuit版)
2010-02-22 13:21 2559读取手机存储文件的核心代码: package com.m ... -
J2ME实现从服务器端下载文件(J2me for HttpConnection)
2010-02-07 21:54 2627J2ME实现从服务器端下载文件: 我以下载服务器文件并在手机客 ... -
Lwuit中关于TextField限制输入为数字的内容代码
2010-01-28 10:50 2050Lwuit中关于TextField限制输入为数字的内容代码 ... -
Lwuit 钟表ClockWidget小应用程序
2010-01-26 12:59 1621J2ME关于Lwuit应用的钟表ClockWidget程序 ... -
Lwuit实现九宫图特效程序
2010-01-25 12:16 2208最近在网上看到很多九宫图的程序说明,但大多数是转载的,一些知识 ... -
J2ME中关于Lwuit的标签的综合使用
2010-01-22 18:02 2481J2ME中关于Lwuit的标签的综合使用 由于我使用的主题对 ... -
Lwuit中关于TextArea、TabbedPane组件的使用说明
2010-01-21 16:15 2186TextArea组件的使用说明代码如下: package ... -
Lwuit中CheckBox、ComboBox组件的使用说明
2010-01-21 15:53 2413这几天刚刚开始接触LWUIT,前两天从网上搜到一兄台的博客写的 ... -
J2ME配置Lwuit
2010-01-20 11:34 2174使用Eclipse加入Lwuit jar包配置方法 1.先 ...
相关推荐
标题中的"midlet_servlet.rar_midlet-servlet"暗示了这是一个关于Java ME(Midlet)与Servlet交互的项目。在移动设备(如早期的智能手机)上,Java ME(Micro Edition)提供了一个名为Midlet的框架,用于开发移动...
MIDLet与Servlet的通信是移动应用与服务器端交互的重要方式,常用于实现数据同步、远程服务调用等功能。 在MIDLet中,由于硬件和资源限制,无法直接访问HTTP协议,因此通常需要通过JSR-82(Java API for Wireless ...
信息设备特征)就是一种特定类型的特征,它包含一些附加的库,为与GUI 和数据库的交互提供了Java API。此外,这些Java API 提 出了诸如应用生命周期和特定设备联网之类的问题。使用MIDP 下的API 创建的各种应用即为...
### MIDlet与J2EE结合开发移动商务应用 #### 一、引言 随着移动互联网技术的迅速发展,移动商务成为了一个重要的商业领域。在众多移动应用开发技术中,Java平台因其良好的跨平台特性而备受青睐。Java 2 Platform, ...
- **已签名与未签名套件之比较**:安装后,可以通过比较已签名和未签名版本的表现来验证签名的有效性。 #### 四、其他签名方法 除了上述的自签名方法外,还可以考虑使用第三方工具或者IDE自带的功能进行MIDlet的...
7. **调试与优化** 在MIDlet开发中,由于资源限制,性能优化尤为重要。开发者需要注意内存管理,避免内存泄漏,并且合理利用有限的屏幕空间和CPU资源。 通过这个项目,学习者可以深入理解MIDlet的生命周期管理,...
### Midlet程序签名机制详解 #### 一、引言 Midlet(Mobile Information Device Profile Application)是基于Java ME平台的应用程序。为了确保Midlet的安全性和可靠性,Java ME平台引入了程序签名机制。本文将详细...
这个案例聚焦于如何让MIDlet利用蓝牙技术与电脑进行数据通信。蓝牙技术允许设备间短距离无线通信,使得MIDlets可以扩展其功能,如传输文件、控制远程设备或共享数据。 首先,要实现MIDlet与电脑的蓝牙通信,我们...
**J2ME开发资料整理-在MIDlet中使用图标** 在Java 2 Micro Edition (J2ME)的开发环境中,MIDlet是用于移动设备和嵌入式系统的应用程序框架。MIDlet提供了丰富的功能,使得开发者能够创建交互式的、功能强大的移动...
import javax.servlet.*; import javax.servlet.http.*; public class MyServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response )throws IOException, ...
【标题】"Midlet2.rar_midlet_simple" 涉及的是Java 2 Micro Edition (J2ME) 平台中的MIDlet应用开发,利用Lightweight User Interface Toolkit (LWUIT) 库来创建一个简单的用户界面。MIDlet是J2ME中的一个核心概念...
本文将详细讲解如何在J2ME中读取MIDlet的系统属性,并解释这些属性的含义。 首先,让我们看一个简单的示例代码,该代码创建了一个名为`DetectMIDlet`的MIDlet,它展示了一些关键的系统属性: ```java import javax...
在MIDlet与Servlet交互时,可能需要根据应用场景选择合适的方法。 总结来说,基于HTTP的网络编程是构建分布式系统、移动应用与服务器端应用通信的基础。通过理解和实践HTTP GET方法,开发者可以掌握客户端与服务器...
"MIDlet-Test.zip_midi_midlet"这个压缩包,很显然,包含了与MIDI(Musical Instrument Digital Interface)和MIDlet相关的示例代码。 MIDI是一种数字音乐标准,用于电子乐器、电脑和其他设备之间的通信。在手机...
通过文档的描述,我们可以了解到开发J2ME与Servlet技术结合的应用程序涉及到的技术点包括J2ME架构、MIDlet编程、Servlet开发、HTTP网络通信、以及三层架构的设计模式等。这些知识点在移动应用开发领域是非常重要的,...
4. **调试与测试**:利用黑莓JDE中的调试工具进行调试,并在模拟器或实际设备上进行测试,确保应用的稳定性和可用性。 5. **发布应用**:完成开发后,将应用打包成.jar文件并部署到黑莓设备上。 #### 六、关键技术...
1. Midlet类:这是整个应用程序的入口点,通常继承自 javax.microedition.midlet.Midlet 类。 2. RMS操作类:包含了与RMS交互的代码,如打开、创建RecordStore,以及读写记录。 3. 用户界面组件:可能包括命令按钮、...
标题“midlet2.zip_png”暗示这可能是一个与Java MIDP(Mobile Information Device Profile)相关的压缩文件,MIDP是Java Micro Edition(Java ME)的一部分,用于开发移动设备上的应用程序,尤其是早期的智能手机和...
#### 一、通过RMS在MIDlet与BlackBerry应用间共享数据 对于很多初次接触BlackBerry应用的开发者或是那些使用J2ME系统的开发者而言,如何以最小的成本实现与BlackBerry应用的交互,是一个值得探讨的话题。而RMS...