`
wangxc
  • 浏览: 212271 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Midlet与Servlet传递Cookie

    博客分类:
  • J2ME
阅读更多
Cookie在Java ME平台中没有得到支持,因此要想维持客户端和服务器端的状态则必须要使用URL重写的方式.
 
   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)返回客户端。

手机模拟器第二次访问和服务器的截图:




  
  • 大小: 14.4 KB
  • 大小: 914 Bytes
  • 大小: 1.3 KB
  • 大小: 966 Bytes
  • 大小: 2.4 KB
分享到:
评论

相关推荐

    midlet_servlet.rar_midlet-servlet

    标题中的"midlet_servlet.rar_midlet-servlet"暗示了这是一个关于Java ME(Midlet)与Servlet交互的项目。在移动设备(如早期的智能手机)上,Java ME(Micro Edition)提供了一个名为Midlet的框架,用于开发移动...

    MIDLet-Servlet通信

    MIDLet与Servlet的通信是移动应用与服务器端交互的重要方式,常用于实现数据同步、远程服务调用等功能。 在MIDLet中,由于硬件和资源限制,无法直接访问HTTP协议,因此通常需要通过JSR-82(Java API for Wireless ...

    MIDlet与Servlet通信的研究与设计

    信息设备特征)就是一种特定类型的特征,它包含一些附加的库,为与GUI 和数据库的交互提供了Java API。此外,这些Java API 提 出了诸如应用生命周期和特定设备联网之类的问题。使用MIDP 下的API 创建的各种应用即为...

    MIDlet与J2EE结合开发移动商务应用

    ### MIDlet与J2EE结合开发移动商务应用 #### 一、引言 随着移动互联网技术的迅速发展,移动商务成为了一个重要的商业领域。在众多移动应用开发技术中,Java平台因其良好的跨平台特性而备受青睐。Java 2 Platform, ...

    MIDlet程序自签名方法

    - **已签名与未签名套件之比较**:安装后,可以通过比较已签名和未签名版本的表现来验证签名的有效性。 #### 四、其他签名方法 除了上述的自签名方法外,还可以考虑使用第三方工具或者IDE自带的功能进行MIDlet的...

    MIDlet控件实例项目(mvc)

    7. **调试与优化** 在MIDlet开发中,由于资源限制,性能优化尤为重要。开发者需要注意内存管理,避免内存泄漏,并且合理利用有限的屏幕空间和CPU资源。 通过这个项目,学习者可以深入理解MIDlet的生命周期管理,...

    Midlet Signing

    ### Midlet程序签名机制详解 #### 一、引言 Midlet(Mobile Information Device Profile Application)是基于Java ME平台的应用程序。为了确保Midlet的安全性和可靠性,Java ME平台引入了程序签名机制。本文将详细...

    MIDlet通过蓝牙与电脑通信的案例

    这个案例聚焦于如何让MIDlet利用蓝牙技术与电脑进行数据通信。蓝牙技术允许设备间短距离无线通信,使得MIDlets可以扩展其功能,如传输文件、控制远程设备或共享数据。 首先,要实现MIDlet与电脑的蓝牙通信,我们...

    J2ME开发资料整理-在MIDlet中使用图标(附范例)

    **J2ME开发资料整理-在MIDlet中使用图标** 在Java 2 Micro Edition (J2ME)的开发环境中,MIDlet是用于移动设备和嵌入式系统的应用程序框架。MIDlet提供了丰富的功能,使得开发者能够创建交互式的、功能强大的移动...

    J2ME入门教程.10(j2me与Servlet相互通讯)编写和配置Servlet服务端

    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

    【标题】"Midlet2.rar_midlet_simple" 涉及的是Java 2 Micro Edition (J2ME) 平台中的MIDlet应用开发,利用Lightweight User Interface Toolkit (LWUIT) 库来创建一个简单的用户界面。MIDlet是J2ME中的一个核心概念...

    读取MIDlet的系统属性

    本文将详细讲解如何在J2ME中读取MIDlet的系统属性,并解释这些属性的含义。 首先,让我们看一个简单的示例代码,该代码创建了一个名为`DetectMIDlet`的MIDlet,它展示了一些关键的系统属性: ```java import javax...

    基于HTTP的网络编程

    在MIDlet与Servlet交互时,可能需要根据应用场景选择合适的方法。 总结来说,基于HTTP的网络编程是构建分布式系统、移动应用与服务器端应用通信的基础。通过理解和实践HTTP GET方法,开发者可以掌握客户端与服务器...

    MIDlet-Test.zip_midi_midlet

    "MIDlet-Test.zip_midi_midlet"这个压缩包,很显然,包含了与MIDI(Musical Instrument Digital Interface)和MIDlet相关的示例代码。 MIDI是一种数字音乐标准,用于电子乐器、电脑和其他设备之间的通信。在手机...

    运用J2ME与Servlet技术的手机程序开发研究

    通过文档的描述,我们可以了解到开发J2ME与Servlet技术结合的应用程序涉及到的技术点包括J2ME架构、MIDlet编程、Servlet开发、HTTP网络通信、以及三层架构的设计模式等。这些知识点在移动应用开发领域是非常重要的,...

    黑莓MIDlet开发指南

    4. **调试与测试**:利用黑莓JDE中的调试工具进行调试,并在模拟器或实际设备上进行测试,确保应用的稳定性和可用性。 5. **发布应用**:完成开发后,将应用打包成.jar文件并部署到黑莓设备上。 #### 六、关键技术...

    RMS-MidLet例子

    1. Midlet类:这是整个应用程序的入口点,通常继承自 javax.microedition.midlet.Midlet 类。 2. RMS操作类:包含了与RMS交互的代码,如打开、创建RecordStore,以及读写记录。 3. 用户界面组件:可能包括命令按钮、...

    midlet2.zip_png

    标题“midlet2.zip_png”暗示这可能是一个与Java MIDP(Mobile Information Device Profile)相关的压缩文件,MIDP是Java Micro Edition(Java ME)的一部分,用于开发移动设备上的应用程序,尤其是早期的智能手机和...

    BlackBerry 应用和MIDlet之间的交互

    #### 一、通过RMS在MIDlet与BlackBerry应用间共享数据 对于很多初次接触BlackBerry应用的开发者或是那些使用J2ME系统的开发者而言,如何以最小的成本实现与BlackBerry应用的交互,是一个值得探讨的话题。而RMS...

Global site tag (gtag.js) - Google Analytics