使用Java servlets会议统计高尔夫分数 : 网络 « 基于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 » 网络屏幕截图 
使用Java servlets会议统计高尔夫分数

/*--------------------------------------------------
* Url_rewrite.java 
*
* Use Java servlets sessions to tally golf scores.
* Session management is done using url-rewriting.
*
* 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.io.*;
import java.io.*;

public class Url_rewrite extends MIDlet implements CommandListener
{
  private Display display;      // Reference to display object 
  private Form fmMain;          // The main form
  private TextField tfScore;    // Enter new score
  private int indxTextField;    // Index on of the textfield
  private StringItem siTotal;   // Running total
  private Command cmExit;       // A Command to exit the MIDlet  
  private Command cmUpdate;     // Update score on servlet
  private int holeNumber = 1;   // Current hole
  private static final int MAX_HOLES = 18;
  private String url = "http://www.mycgiserver.com/servlet/corej2me.Url_rewriteServlet";

  public Url_rewrite()
  {
    display = Display.getDisplay(this);

    // Enter scores    
    tfScore = new TextField("Enter score for Hole #1"""2, TextField.NUMERIC);
    
    // Current running total
    siTotal = new StringItem("Total: """);

    // Commands
    cmExit = new Command("Exit", Command.EXIT, 1);
    cmUpdate = new Command("Send", Command.SCREEN,2);

    // Create Form, add components, listen for events
    fmMain = new Form("");
    
    // Save index of textfield, it is removed 
    // after entering 18 values
    indxTextField = fmMain.append(tfScore);
    fmMain.append(siTotal);
    fmMain.addCommand(cmExit);
    fmMain.addCommand(cmUpdate);
    fmMain.setCommandListener(this);   
  }

  public void startApp()
  {
    display.setCurrent(fmMain);
  }    
    
  public void pauseApp()
  { }

  public void destroyApp(boolean unconditional)
  { }

  /*--------------------------------------------------
  * Process events
  *-------------------------------------------------*/  
  public void commandAction(Command c, Displayable s)
  {
    if (c == cmExit)
    {
      destroyApp(false);
      notifyDestroyed();
    
    else if (c == cmUpdate)  // Send score for next hole
    {
      // If nothing in the text field or max scores entered
      if (tfScore.getString().equals(""|| holeNumber > MAX_HOLES)
        return;
      else
      {
        try
        {
          // Update the score on remote server
          updateTotal(tfScore.getString());
        
          // If entered the maximum, remove the 
          // textfield from the form
          if (++holeNumber > MAX_HOLES)
          {
            fmMain.delete(indxTextField);
            return;
          }
  
          // Change the label & reset contents
          tfScore.setLabel("Enter score for Hole #" + holeNumber);
          tfScore.setString("");
        }
        catch (Exception e)
        {
          System.err.println("Msg: " + e.toString());
        }
      }
    }     
  }

  /*--------------------------------------------------
  * Send client request. Receive server response
  *
  * Client: Send score for next hole.
  *
  * Server: Check for custom header 'Custom-newURL'
  *         If found, update the MIDlet URL for all
  *         future requests. Any data returned is 
  *         current total for all scores entered.
  *-------------------------------------------------*/
  private void updateTotal(String scorethrows IOException
  {
    HttpConnection http = null;
    InputStream iStrm = null;    
    boolean ret = false;
     
    try
    {
      // When using GET, append data onto the url
      String completeURL = url + "?" "score=" + score;
      
      http = (HttpConnectionConnector.open(completeURL);
      
      //----------------
      // Client Request
      //----------------
      // 1) Send request method
      http.setRequestMethod(HttpConnection.GET);

      // 2) Send header information - none
      
      // If you experience connection/IO problems, try 
      // removing the comment from the following line
      //http.setRequestProperty("Connection", "close");      
      
      // 3) Send body/data -  data is at the end of URL

      //----------------
      // Server Response
      //----------------
      iStrm = http.openInputStream();      

      // 1) Get status Line - ignore for now
        // System.out.println("Msg: " + http.getResponseMessage());                  
        // System.out.println("Code: " + http.getResponseCode());                
      
      // 2) Get header information 
      // See if header includes a rewritten url
      // if yes, update url for all future servlet requests
      String URLwithID = http.getHeaderField("Custom-newURL");
      
      if (URLwithID != null)
        url = URLwithID;
     
      // 3) Get body/data - the new running total is returned
      String str;
      int length = (inthttp.getLength();
      if (length != -1)
      {
        byte servletData[] new byte[length];
        iStrm.read(servletData);
        str = new String(servletData);
      }
      else  // Length not available...
      {
        ByteArrayOutputStream bStrm = new ByteArrayOutputStream();       
      
        int ch;
        while ((ch = iStrm.read()) != -1)
          bStrm.write(ch);

        str = new String(bStrm.toByteArray());
        bStrm.close();                        
       }

      // Update the stringitem that shows total
      siTotal.setText(str);
    }
    finally
    {
      // Clean up
      if (iStrm != null)
        iStrm.close();
      if (http != null)
        http.close();
    }
  }
}

/*--------------------------------------------------
* Url_rewriteServlet.java
*
* Use url-rewriting to manage sessions.
* Keeps a running total of golf scores for a 
* round of 18 holes (client sends score for each
* hole, one at a time).
*
* 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.*;

public class Url_rewriteServlet extends HttpServlet
{
  /*--------------------------------------------------
  * Initialize the servlet
  *-------------------------------------------------*/  
  public void init(ServletConfig configthrows ServletException
  {
    super.init(config);
  }

  /*--------------------------------------------------
  * Handle a GET request from client
  *-------------------------------------------------*/  
  protected void doGet(HttpServletRequest req, HttpServletResponse res
                       throws ServletException, IOException
  {
    try
    {
      // Get session information
      HttpSession session = req.getSession(true);
      
      // If a new session, we need to rewrite the URL for client
      if (session.isNew())
      {
        // Get the URL that got us here
        String incomingURL = HttpUtils.getRequestURL(req).toString();
        
        // Encode by adding session ID onto URL
        String URLwithID = res.encodeURL(incomingURL);
        
        // Send back a header to client with new re-written URL
        res.setHeader("Custom-newURL", URLwithID);
      }

      // Get the next score (parameter) passed in
      int nextScore = Integer.parseInt(req.getParameter("score"));
  
      // Get the ongoing total saved as part of the session
      // Convert to an integer "object"
      Integer sessionTotal = (Integersession.getValue("sessionTotal");      

      // Running total from session and score passed in            
      int runningTotal = nextScore;
      if (sessionTotal != null)
        runningTotal += sessionTotal.intValue();

      // Update the session total, must save as an "object"      
      session.putValue("sessionTotal"new Integer(runningTotal));

      // Send back to client the new running total
      res.setContentType("text/plain");
      PrintWriter out = res.getWriter();
      out.write(Integer.toString(runningTotal));
      out.close();
    }
    catch (Exception e)
    {
      System.err.println("Msg: " + e.toString());
    }
  }

  /*--------------------------------------------------
  * Information about servlet
  *-------------------------------------------------*/
  public String getServletInfo()
  {
    return "Url_rewriteServlet 1.0 - John W. Muchow - www.corej2me.com";
  }
}
           
       
Related examples in the same category
1. 应用程序调用一个CGI脚本。
2. 应用程序调用一个CGI脚本( POST方法用来)
3. HTTPS的应用程序
4. Pass a cookie (stored in rms) between the MIDlet and a Java servlet.
5. Use GET or POST to communicate with a Java servlet.
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.