`
wangxc
  • 浏览: 213831 次
  • 性别: 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
分享到:
评论

相关推荐

    实时监控体系:基于Prometheus的API性能指标可视化方案.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    5个提升DeepSeekAPI生成质量的调参技巧,开发者必看!.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    ACM动态规划模板-区间修改线段树问题模板

    ACM动态规划模板-区间修改线段树问题模板

    深度解析C语言调试技巧:VSCode+GDB实战排错指南.pdf

    # 踏入C语言的奇妙编程世界 在编程的广阔宇宙中,C语言宛如一颗璀璨恒星,以其独特魅力与强大功能,始终占据着不可替代的地位。无论你是编程小白,还是有一定基础想进一步提升的开发者,C语言都值得深入探索。 C语言的高效性与可移植性令人瞩目。它能直接操控硬件,执行速度快,是系统软件、嵌入式开发的首选。同时,代码可在不同操作系统和硬件平台间轻松移植,极大节省开发成本。 学习C语言,能让你深入理解计算机底层原理,培养逻辑思维和问题解决能力。掌握C语言后,再学习其他编程语言也会事半功倍。 现在,让我们一起开启C语言学习之旅。这里有丰富教程、实用案例、详细代码解析,助你逐步掌握C语言核心知识和编程技巧。别再犹豫,加入我们,在C语言的海洋中尽情遨游,挖掘无限可能,为未来的编程之路打下坚实基础!

    10个高效调用DeepSeekAPI的技巧:从请求优化到缓存策略.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    基于Python语言的PersonRelationKnowledgeGraph设计源码

    本项目为Python语言开发的PersonRelationKnowledgeGraph设计源码,总计包含49个文件,涵盖19个.pyc字节码文件、12个.py源代码文件、8个.txt文本文件、3个.xml配置文件、3个.png图片文件、2个.md标记文件、1个.iml项目配置文件、1个.cfg配置文件。该源码库旨在构建一个用于表示和查询人物关系的知识图谱系统。

    成本优化指南:通过Token计算模型将API费用降低57%的秘诀.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    大华智能物联平台,的对接其他接口的API,可以获得视频拉流的flv/hls/rstp 的拉流地址,demo项目为springBoot项目,可以通过摄像头的视频通道,获取到实时拉流的uRl

    rtsp实时预览接口URL:/evo-apigw/admin/API/MTS/Video/StartVideo HLS、FLV、RTMP实时预览接口方式 :接口URL/evo-apigw/admin/API/video/stream/realtime 参数名 必选 类型 说明 data true string Json串 +channelId true string 视频通道编码 +streamType true string 码流类型:1=主码流, 2=辅码流,3=辅码流2 +type true string 协议类型:hls,hlss,flv,flvs,ws_flv,wss_flv,rtmp hls:http协议,m3u8格式,端口7086; hlss:https协议,m3u8格式,端口是7096; flv:http协议,flv格式,端口7886; flvs:https协议,flv格式,端口是7896; ws_flv:ws协议,flv格式,端口是7886; wss_flv:wss协议,flv格式,端口是7896; rtmp:rtmp协议,端口是1975;

    Simulink永磁风机飞轮储能系统二次调频技术研究:频率特性分析与参数优化,Simulink永磁风机飞轮储能二次调频技术:系统频率特性详解及参数优化研究参考详实文献及两区域系统应用,simulink

    Simulink永磁风机飞轮储能系统二次调频技术研究:频率特性分析与参数优化,Simulink永磁风机飞轮储能二次调频技术:系统频率特性详解及参数优化研究参考详实文献及两区域系统应用,simulink永磁风机飞轮储能二次调频,系统频率特性如下,可改变调频参数改善频率。 参考文献详细,两区域系统二次调频。 ,核心关键词: 1. Simulink 2. 永磁风机 3. 飞轮储能 4. 二次调频 5. 系统频率特性 6. 调频参数 7. 改善频率 8. 参考文献 9. 两区域系统 以上关键词用分号(;)分隔,结果为:Simulink;永磁风机;飞轮储能;二次调频;系统频率特性;调频参数;改善频率;参考文献;两区域系统。,基于Simulink的永磁风机与飞轮储能系统二次调频研究:频率特性及调频参数优化

    MATLAB驱动的ASR防滑转模型:PID与对照控制算法对比,冰雪路面条件下滑移率与车速轮速对照展示,MATLAB驱动的ASR防滑转模型:PID与对照控制算法对比,冰雪路面条件下滑移率与车速轮速对照图

    MATLAB驱动的ASR防滑转模型:PID与对照控制算法对比,冰雪路面条件下滑移率与车速轮速对照展示,MATLAB驱动的ASR防滑转模型:PID与对照控制算法对比,冰雪路面条件下滑移率与车速轮速对照图展示,MATLAB驱动防滑转模型ASR模型 ASR模型驱动防滑转模型 ?牵引力控制系统模型 选择PID控制算法以及对照控制算法,共两种控制算法,可进行选择。 选择冰路面以及雪路面,共两种路面条件,可进行选择。 控制目标为滑移率0.2,出图显示车速以及轮速对照,出图显示车辆轮胎滑移率。 模型简单,仅供参考。 ,MATLAB; ASR模型; 防滑转模型; 牵引力控制系统模型; PID控制算法; 对照控制算法; 冰路面; 雪路面; 控制目标; 滑移率; 车速; 轮速。,MATLAB驱动的ASR模型:PID与对照算法在冰雪路面的滑移率控制研究

    芯片失效分析方法介绍 -深入解析芯片故障原因及预防措施.pptx

    芯片失效分析方法介绍 -深入解析芯片故障原因及预防措施.pptx

    4131_127989170.html

    4131_127989170.html

    PostgreSQL自动化部署与优化脚本:智能化安装、安全加固与监控集成

    内容概要:本文提供了一个全面的PostgreSQL自动化部署解决方案,涵盖智能环境适应、多平台支持、内存与性能优化以及安全性加强等重要方面。首先介绍了脚本的功能及其调用方法,随后详细阐述了操作系统和依赖软件包的准备过程、配置项的自动生成机制,还包括对实例的安全性和监控功能的强化措施。部署指南给出了具体的命令操作指导,便于新手理解和执行。最后强调了该工具对于不同硬件条件和服务需求的有效应对能力,特别是针对云计算环境下应用的支持特点。 适合人群:对PostgreSQL集群运维有一定基础并渴望提高效率和安全性的数据库管理员及工程师。 使用场景及目标:本脚本能够帮助企业在大规模部署时减少人工介入时间,确保系统的稳定性与高性能,适用于各类需要稳定可靠的数据库解决方案的企业或机构,特别是在大数据量和高并发事务处理场合。 其他说明:文中还提及了一些高级功能如自动备份、流复制等设置步骤,使得该方案不仅可以快速上线而且能满足后续维护和发展阶段的要求。同时提到的技术性能数据也为用户评估其能否满足业务需求提供了直观参考。

    房地产开发合同[示范文本].doc

    房地产开发合同[示范文本].doc

    成本优化实战:DeepSeekAPI的Tokens计算与计费策略拆解.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    安全必读:DeepSeek接口调用中的数据加密与合规实践.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    工程技术承包合同[示范文本].doc

    工程技术承包合同[示范文本].doc

    蓝桥杯开发赛作品源码【基于C语言】

    蓝桥杯开发赛【作品源码】

    深度解析DeepSeek语义分析API:实现情感分析与意图识别的进阶技巧.pdf

    在日常的工作和学习中,你是否常常为处理复杂的数据、生成高质量的文本或者进行精准的图像识别而烦恼?DeepSeek 或许就是你一直在寻找的解决方案!它以其高效、智能的特点,在各个行业都展现出了巨大的应用价值。然而,想要充分发挥 DeepSeek 的优势,掌握从入门到精通的知识和技能至关重要。本文将从实际应用的角度出发,为你详细介绍 DeepSeek 的基本原理、操作方法以及高级技巧。通过系统的学习,你将能够轻松地运用 DeepSeek 解决实际问题,提升工作效率和质量,让自己在职场和学术领域脱颖而出。现在,就让我们一起开启这场实用又高效的学习之旅吧!

    CVPR2023复现技术:多数据集验证下的YOLOX、YOLOv5及YOLOV7检测涨点助力器,CVPR2023复现实验助力检测涨点,验证了YOLOX、YOLOv5及YOLOV7在多个数据集上的有效性

    CVPR2023复现技术:多数据集验证下的YOLOX、YOLOv5及YOLOV7检测涨点助力器,CVPR2023复现实验助力检测涨点,验证了YOLOX、YOLOv5及YOLOV7在多个数据集上的有效性,cvpr2023复现,助力检测涨点,YOLOX YOLOv5 YOLOV7均有效,再多个数据集验证有效 ,cvpr2023复现; 助力检测涨点; YOLOX有效; YOLOv5有效; YOLOV7有效; 多数据集验证有效,CVPR2023复现成功:多模型检测涨点验证有效

Global site tag (gtag.js) - Google Analytics