Use GET or POST to communicate with 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 » 网络屏幕截图 
Use GET or POST to communicate with a Java servlet.


/*--------------------------------------------------
* GetNpost.java
*
* Use GET or POST to communicate with a Java servlet. 
* The servlet will search a database for the balance
* of an account.
*
* 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 GetNpost extends MIDlet implements CommandListener
{
  private Display display;      // Reference to Display object
  private Form fmMain;         // The main form
  private Alert alError;       // Alert to error message
  private Command cmGET;       // Request method GET
  private Command cmPOST;      // Request method Post  
  private Command cmExit;      // Command to exit the MIDlet
  private TextField tfAcct;    // Get account number
  private TextField tfPwd;     // Get password
  private StringItem siBalance;// Show account balance
  private String errorMsg = null;
    
  public GetNpost()
  {
    display = Display.getDisplay(this);

    // Create commands
    cmGET = new Command("GET", Command.SCREEN, 2);
    cmPOST = new Command("POST", Command.SCREEN, 3);    
    cmExit = new Command("Exit", Command.EXIT, 1);

    // Textfields
    tfAcct = new TextField("Account:"""5, TextField.NUMERIC);
    tfPwd = new TextField("Password:"""10, TextField.ANY | TextField.PASSWORD);        

    // Balance string item
    siBalance = new StringItem("Balance: $""");

    // Create Form, add commands & componenets, listen for events
    fmMain = new Form("Account Information");    
    fmMain.addCommand(cmExit);
    fmMain.addCommand(cmGET);
    fmMain.addCommand(cmPOST);
    
    fmMain.append(tfAcct);
    fmMain.append(tfPwd);
    fmMain.append(siBalance);
    
    fmMain.setCommandListener(this);   
  }

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

  public void pauseApp()
  { }
  
  public void destroyApp(boolean unconditional)
  { }

  public void commandAction(Command c, Displayable s)
  {
    if (c == cmGET || c == cmPOST)
    {
      try 
      {
        if (c == cmGET)
          lookupBalance_withGET()
        else
          lookupBalance_withPOST();
      }
      catch (Exception e)
      
        System.err.println("Msg: " + e.toString());
      }
    }
    else if (c == cmExit)
    {
      destroyApp(false);
      notifyDestroyed();
    
  }

  /*--------------------------------------------------
  * Access servlet using GET
  *-------------------------------------------------*/    
  private void lookupBalance_withGET() throws IOException
  {
    HttpConnection http = null;
    InputStream iStrm = null;    
    boolean ret = false;

    // Data is passed at the end of url for GET
    String url = "http://www.mycgiserver.com/servlet/corej2me.GetNpostServlet" "?" +
                 "account=" + tfAcct.getString() "&" 
                 "password=" + tfPwd.getString();
                 
    try
    {
      http = (HttpConnectionConnector.open(url);
      
      //----------------
      // Client Request
      //----------------
      // 1) Send request method
      http.setRequestMethod(HttpConnection.GET);
      // 2) Send header information - none
      // 3) Send body/data -  data is at the end of URL

      //----------------
      // Server Response
      //----------------
      iStrm = http.openInputStream();      
      // Three steps are processed in this method call
      ret = processServerResponse(http, iStrm);
    }
    finally
    {
      // Clean up
      if (iStrm != null)
        iStrm.close();
      if (http != null)
        http.close();
    }

    // Process request failed, show alert    
    if (ret == false)
      showAlert(errorMsg);        
  }

  /*--------------------------------------------------
  * Access servlet using POST
  *-------------------------------------------------*/  
  private void lookupBalance_withPOST() throws IOException
  {
    HttpConnection http = null;
    OutputStream oStrm = null;
    InputStream iStrm = null;    
    boolean ret = false;
  
    // Data is passed as a separate stream for POST (below)
    String url = "http://www.mycgiserver.com/servlet/corej2me.GetNpostServlet";
             
    try
    {
      http = (HttpConnectionConnector.open(url);
      oStrm = http.openOutputStream();
      
      //----------------
      // Client Request
      //----------------
      // 1) Send request type
      http.setRequestMethod(HttpConnection.POST)
      
      // 2) Send header information. Required for POST to work!
      http.setRequestProperty("Content-Type""application/x-www-form-urlencoded");

      // If you experience connection/IO problems, try 
      // removing the comment from the following line
      //   http.setRequestProperty("Connection", "close");      

      // 3) Send data/body
      // Write account number
      byte data[] ("account=" + tfAcct.getString()).getBytes();
      oStrm.write(data);
      
      // Write password
      data = ("&password=" + tfPwd.getString()).getBytes();
      oStrm.write(data);
      
      // For 1.0.3 remove flush command
      // See the note at the bottom of this file
//      oStrm.flush();

      //----------------
      // Server Response
      //----------------
      iStrm = http.openInputStream();      
      // Three steps are processed in this method call      
      ret = processServerResponse(http, iStrm);
    }
    finally
    {
      // Clean up
      if (iStrm != null)
        iStrm.close();
      if (oStrm != null)
        oStrm.close();        
      if (http != null)
        http.close();
    }

    // Process request failed, show alert    
    if (ret == false)
      showAlert(errorMsg);        
 }

  /*--------------------------------------------------
  * Process a response from a server
  *-------------------------------------------------*/
  private boolean processServerResponse(HttpConnection http, InputStream iStrmthrows IOException
  {
    //Reset error message
    errorMsg = null;
    
    // 1) Get status Line
    if (http.getResponseCode() == HttpConnection.HTTP_OK)
    {
      // 2) Get header information - none
      
      // 3) Get body (data)
      int length = (inthttp.getLength();
      String str;
      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 string item on the display
     siBalance.setText(str);
     return true;
     
    }
    else
      // Use message from the servlet
      errorMsg = new Stringhttp.getResponseMessage());

    return false;      
  }

  /*--------------------------------------------------
  * Show an Alert
  *-------------------------------------------------*/
  private void showAlert(String msg)
  {
    // Create Alert, use message returned from servlet
    alError = new Alert("Error", msg, null, AlertType.ERROR);

    // Set Alert to type Modal
    alError.setTimeout(Alert.FOREVER);

    // Display the Alert. Once dismissed, display the form
    display.setCurrent(alError, fmMain);            
  }
}

/*
The call to flush() uses a feature of HTTP 1.1 that allows data to be
sent in smaller loads. When calling flush() or sending a large
amount of data (in version 1.0.3) chunked encoding is used. 

If you are using an HTTP 1.0 server or proxy server the chunked 
transfer may cause problems.

You can avoid the chunking behavior with small transactions by just
calling close() where you were using flush(). For larger transactions
you need to buffer your output so a single write() and close() are
issued to the output stream.
*/


/*--------------------------------------------------
* GetNpostServlet.java
*
* Show how GET and POST from client can access and
* process the same data.
* Account information is maintained in a database
*  (connecting with jdbc)
*
* Table: acctInfo
* Columns: 
*   account   - integer
*   password  - varchar
*   balance   - integer
*
* 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.*;

public class GetNpostServlet extends HttpServlet
{
  protected void doGet(HttpServletRequest req, HttpServletResponse res
                       throws ServletException, IOException
  {
    // Same code appears in doPost()
    // Shown both places to emphasize that data is received thru
    // different means (environment variable vs stream), 
    // yet processed the same inside the servlet
    String acct = req.getParameter("account"),
            pwd = req.getParameter("password");    

    String balance = accountLookup(acct, pwd);

    if (balance == null)
    {
      res.sendError(res.SC_BAD_REQUEST, "Unable to locate account.");            
      return;
    }

    res.setContentType("text/plain");    
    PrintWriter out = res.getWriter();
    out.print(balance);
    out.close();
  }
  
  protected void doPost(HttpServletRequest req, HttpServletResponse res
                        throws ServletException, IOException
  {
    // Same code appears in doGet()
    // Shown both places to emphasize that data is received thru
    // different means (stream vs environment variable), 
    // yet processed the same inside the servlet
    String acct = req.getParameter("account"),
            pwd = req.getParameter("password");    

    String balance = accountLookup(acct, pwd);

    if (balance == null)
    {
      res.sendError(res.SC_BAD_REQUEST, "Unable to locate account.");            
      return;
    }
    
    res.setContentType("text/plain");    
    PrintWriter out = res.getWriter();
    out.print(balance);
    out.close();
  }

  /*--------------------------------------------------
  * Lookup bank account balance in database
  *-------------------------------------------------*/
  private String accountLookup(String acct, String pwd)
  {
    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 balance from acctInfo where account = " +
                             acct + "and password = '" + pwd + "'");      
      
      if (rs.next())
        return rs.getString(1);
      else
        return null;
    }
    catch (Exception e)
    {
      return e.toString();
    }
  }
 
  /*--------------------------------------------------
  * Information about servlet
  *-------------------------------------------------*/     
  public String getServletInfo()
  {
    return "GetNpostServlet 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. 使用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.