Pass a cookie (stored in rms) between the MIDlet and a Java servlet. : 网络 « 基于J2ME « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 基于J2ME » 网络屏幕截图 
Pass a cookie (stored in rms) between the MIDlet and a Java servlet.

/*--------------------------------------------------
* Cookie.java
*
* Pass a cookie (stored in rms) between the MIDlet
* and a Java servlet. The cookie is generated  
* by the servlet on the first visit.
*
* Example from the book:     Core J2ME Technology
* Copyright John W. Muchow   http://www.CoreJ2ME.com
* You may use/modify for any non-commercial purpose
*-------------------------------------------------*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.rms.*;
import javax.microedition.io.*;
import java.io.*;
  
public class Cookie extends MIDlet implements CommandListener
{
  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://www.mycgiserver.com/servlet/corej2me.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);

        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 = (HttpConnectionConnector.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 = (inthttp.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 
      {
        // Logon to the servlet
        connect();     
      }
      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);
  }
}
/*--------------------------------------------------
* CookieServlet.java
*
* Use a cookie to identify clients
*
* Example from the book:     Core J2ME Technology
* Copyright John W. Muchow   http://www.CoreJ2ME.com
* You may use/modify for any non-commercial purpose
*-------------------------------------------------*/
//package corej2me; // Required for mycgiserver.com

import java.util.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;
import java.text.*;

public class CookieServlet extends HttpServlet
{
  // Pool of client ID's
  private static int[] clientIDs = {123456789901225701};
  
  protected void doGet(HttpServletRequest req, HttpServletResponse res
                       throws ServletException, IOException
  {
    // Get cookie from the header
    Cookie[] cookies = req.getCookies();

    //-------------------------------------------
    // If cookie passed in...    
    // 1) Lookup the client ID in the database 
    //    and save the last access date
    // 2) Update the last access date in database
    // 3) Return to the client date from step 1
    //-------------------------------------------    
    if (cookies != null)
    {
      // There will be only one cookie
      Cookie theCookie = cookies[0];
      String id = theCookie.getValue();

      // Lookup client ID and get last access date
      String strLastAccess = lookupLastAccessDate(Integer.parseInt(id));
      
      // Update database with current date
      updateLastAccessDate(Integer.parseInt(id));
      
      // Send back the last access date to the client
      res.setContentType("text/plain");    
      PrintWriter out = res.getWriter();
      out.print(strLastAccess);
      out.close();
    }
    else  // No Cookie
    {
      //-------------------------------------------
      // Generate a client ID. To keep the database
      // from growing out of control, this will not 
      // generate a new ID for each client. 
      // Instead, grab a random ID from the array  
      // clientID's[]. The end result is the same
      // as far as the client is concerned.
      //-------------------------------------------      
      
      // Random value between 0 and the number of
      // entries in the client list array
      int random = (intMath.round(clientIDs.length * Math.random());
      
      // Get the client ID to send in the cookie
      int ID = clientIDs[random];

      // Update database with current date
      updateLastAccessDate(ID);

      // Create new cookie and send ID in the header
      Cookie cookie = new Cookie("ID", Integer.toString(ID));
      res.addCookie(cookie);   
    }
   
  }
 
  /*--------------------------------------------------
  * Update database with last access date for client ID
  *-------------------------------------------------*/ 
  private void updateLastAccessDate(int ID
  {
    Connection con = null;
    Statement st = null;
    StringBuffer msgb = new StringBuffer("");

    try
    {
      // These will vary depending on your server/database      
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");  
      con = DriverManager.getConnection("jdbc:odbc:acctInfo");

      Statement stmt = con.createStatement();

      // Create a date format    
      SimpleDateFormat format = 
          new SimpleDateFormat ("MMM dd-hh:mm aa");      
      String strDate = format.format(new java.util.Date());
      
      ResultSet rs = stmt.executeQuery("UPDATE clientInfo set lastAccess = '" 
                                        strDate + "' where clientID = " + ID);
    }
    catch (Exception e)
    { }
  }
  
  /*--------------------------------------------------
  * Lookup the client ID in database and get the 
  * last access date
  *-------------------------------------------------*/
  private String lookupLastAccessDate(int id)
  {
    Connection con = null;
    Statement st = null;
    StringBuffer msgb = new StringBuffer("");

    try
    {
      // These will vary depending on your server/database            
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");  
      con = DriverManager.getConnection("jdbc:odbc:acctInfo");

      Statement stmt = con.createStatement();
      ResultSet rs = stmt.executeQuery("Select lastAccess from clientInfo where clientID = " + id)
      
      if (rs.next())
        return rs.getString(1);
      else
        return null;
    }
    catch (Exception e)
    {
      return e.toString();
    }
  }
  
  /*--------------------------------------------------
  * Information about servlet
  *-------------------------------------------------*/     
  public String getServletInfo()
  {
    return "CookieServlet 1.0 - John W. Muchow - www.corej2me.com";
  }
}

           
       
Related examples in the same category
1. 应用程序调用一个CGI脚本。
2. 应用程序调用一个CGI脚本( POST方法用来)
3. HTTPS的应用程序
4. Use GET or POST to communicate with a Java servlet.
5. 使用Java servlets会议统计高尔夫分数
6. 网址Http试验
7. 用例子应用程序调用一个CGI脚本用例子应用程序调用一个CGI脚本
8. 定时器服务器定时器服务器
9. 网址示例网址示例
10. 套接字连接套接字连接
11. HTTP连接HTTP连接
12. Cookie程序Cookie程序
13. JargoneerJargoneer
14. Post MIDlet
15. 片状程序片状程序
16. 应用程序调用一个CGI脚本( GET方法) 。应用程序调用一个CGI脚本( GET方法) 。
17. 撷取网页应用程序撷取网页应用程序
18. 调用Servlet的应用程序2
19. 调用Servlet的应用程序1
20. 应用程序调用一个CGI脚本( POST方法是使用) ( 2 )应用程序调用一个CGI脚本( POST方法是使用) ( 2 )
21. Demonstrates the functionality of DatagramConnection framework.Demonstrates the functionality of DatagramConnection framework.
22. 样品展示程序的HTTP GET和POST
23. 从网络获得文件从网络获得文件
24. 应用程序服务器2应用程序服务器2
25. 使用HttpConnection应用程序获取一个网页使用HttpConnection应用程序获取一个网页
26. 一个简单的网络客户端一个简单的网络客户端
27. 发送客户端请求并获取服务器响应发送客户端请求并获取服务器响应
28. 套接字应用程序套接字应用程序
29. www.amazon.com图书排行程序www.amazon.com图书排行程序
30. 时间服务器
31. 网址程序网址程序
32. DatagramSenderDatagramSender
33. 数据接收机
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.