网址Http试验 : 网络 « 基于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 » 网络屏幕截图 
网址Http试验

/*
 * @(#)HttpTest.java 1.14 00/05/24 Copyright (c) 1999,2000 Sun Microsystems,
 * Inc. All Rights Reserved.
 
 * This software is the confidential and proprietary information of Sun
 * Microsystems, Inc. ("Confidential Information"). You shall not disclose such
 * Confidential Information and shall use it only in accordance with the terms
 * of the license agreement you entered into with Sun.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

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.TextBox;
import javax.microedition.midlet.MIDlet;

public class HttpTest extends MIDlet implements CommandListener {

  private Command exitCommand = new Command("Exit", Command.SCREEN, 2);

  private Command reloadCommand = new Command("Reload", Command.SCREEN, 1);

  private Command headCommand = new Command("Head", Command.HELP, 1);

  private String getUrl = "http://sraju1:8080/hello.txt";

  private String headUrl = "http://sraju1:8080/hello.txt?test#home";

  private Display display;

  public HttpTest() {
    display = Display.getDisplay(this);
  }

  public void startApp() {
    // Use the specified URL is overriden in the descriptor
    String u = getAppProperty("HttpTest-Url");
    if (u != null) {
      getUrl = u;
      headUrl = u + "?test#home";
    }
    readPage();
  }

  private void headPage() {

    StringBuffer b = new StringBuffer();

    try {
      HttpConnection c = null;
      c = (HttpConnectionConnector.open(headUrl);
      //      c.setRequestMethod(request);
      c.setRequestMethod(HttpConnection.HEAD);

      b.append("URL: " + c.getURL() "\nProtocol: " + c.getProtocol()
          "\nHost: " + c.getHost() "\nFile: " + c.getFile()
          "\nRef: " + c.getRef() "\nQuery: " + c.getQuery()
          "\nPort: " + c.getPort() "\nMethod: "
          + c.getRequestMethod());
      InputStream is = c.openInputStream();
      // DEBUG: request System.out.println(b) ;

      b.append("\nResponseCode: " + c.getResponseCode()
          "\nResponseMessage:" + c.getResponseMessage()
          "\nContentLength: " + c.getLength() "\nContentType: "
          + c.getType() "\nContentEncoding: " + c.getEncoding()
          "\nContentExpiration: " + c.getExpiration() "\nDate: "
          + c.getDate() "\nLast-Modified: " + c.getLastModified()
          "\n\n");

      int h = 0;
      while (true) {
        try {
          String key = c.getHeaderFieldKey(h);
          if (key == null)
            break;
          String value = c.getHeaderField(h);
          b.append(key + ": " + value + "\n");
          h++;
          System.out.println(key + "(" + h + "): " + value);
        catch (Exception e) {
          System.out.println("Exception while fetching headers");
          break;
        }
      }
      try {
        is.close();
        c.close();
      catch (Exception ce) {
        System.out.println("Error closing connection");
      }

      TextBox t = new TextBox("Http Test", b.toString()10240);
      System.out.println("String read from URL: " + getUrl + " - is: "
          + b.toString());

      t.addCommand(reloadCommand);
      t.addCommand(exitCommand);
      t.setCommandListener(this);
      display.setCurrent(t);

    catch (IOException ex) {
      System.out.println("Exception reading from http:" + ex);
    }
  }

  private void readPage() {
    StringBuffer b = new StringBuffer();

    HttpConnection c = null;
    TextBox t = null;
    try {
      long len = 0;
      int ch = 0;

      System.out.println("Read Page: " + getUrl);
      c = (HttpConnectionConnector.open(getUrl);
      InputStream is = c.openInputStream();

      len = c.getLength();
      if (len != -1) {
        // Read exactly Content-Length bytes
        // DEBUG: System.out.println("Content-Length: " + len);

        for (int i = 0; i < len; i++)
          if ((ch = is.read()) != -1)
            b.append((charch);
      else {
        // Read til the connection is closed.
        // (Typical HTTP/1.0 script generated output)
        while ((ch = is.read()) != -1) {
          // DEBUG: System.out.println("'" + (char)ch + "' " +
          // is.available() );
          len = is.available()// For HTTP 1.1 servers, chunked
                      // reads.
          b.append((charch);
        }
      }
      try {
        is.close();
        c.close();
      catch (Exception ce) {
        System.out.println("Error closing connection");
      }

      try {
        len = is.available();
        System.out
            .println("Inputstream failed to throw IOException after close");
      catch (IOException io) {
        // Test to make sure available() is only valid while
        // the connection is still open.,
      }

      t = new TextBox("Http Test", b.toString()10240);

    catch (IOException ex) {
      System.out.println("Exception reading from http");
      if (c != null) {
        try {
          String s = c.getResponseMessage();
          System.out.println(s);
          if (s == null)
            s = "No Response message";
          t = new TextBox("Http Error", s, 10240);
        catch (IOException e) {
          ex.printStackTrace();
          String s = ex.toString();
          System.out.println(s);
          if (s == null)
            s = ex.getClass().getName();
          t = new TextBox("Http Error", s, 10240);
        }
      else {
        t = new TextBox("Http Error""Could not open URL"10240);
      }
    }
    t.addCommand(reloadCommand);
    t.addCommand(exitCommand);
    t.addCommand(headCommand);
    t.setCommandListener(this);
    display.setCurrent(t);

  }

  /*
   * private void readPage() {
   
   * StringBuffer b = new StringBuffer();
   
   * HttpConnection c = null; TextBox t = null; try { c = ( HttpConnection
   * )Connector.open( getUrl ); InputStream is = c.openInputStream(); int ch =
   * 0; while ( (ch = is.read() ) != -1 ) { b.append( ( char )ch ); }
   * is.close(); c.close();
   
   * t = new TextBox( "Http Test", b.toString(), 1024, 0 );
   * System.out.println( "String read from URL: " + getUrl + " - is: " +
   * b.toString() ); } catch ( IOException ex ) { System.out.println(
   * "Exception reading from http" ); if (c != null) { try { String s =
   * c.getResponseMessage(); System.out.println( s ); if ( s == null ) s = "No
   * Response message"; t = new TextBox( "Http Error", s, 1024, 0 ); } catch (
   * IOException e ) { String s = ex.toString(); System.out.println( s ); if (
   * s == null ) s = ex.getClass().getName(); t = new TextBox( "Http Error",
   * s, 1024, 0 ); } } else { t = new TextBox( "Http Error", "Could not open
   * URL", 1024, 0 ); } } t.addCommand( reloadCommand ); t.addCommand(
   * exitCommand ); t.addCommand( headCommand ); t.setCommandListener( this );
   * display.setCurrent( t ); }
   */

  /*
   * private void headPage() {
   
   * StringBuffer b = new StringBuffer(); HttpConnection c = null; InputStream
   * is = null;
   
   * try { c = ( HttpConnection )Connector.open( headUrl );
   * System.out.println( "Going to setRequestMethod()... " );
   * c.setRequestMethod( HttpConnection.HEAD ); System.out.println( "Going to
   * get Properties " ); b.append ( "URL: " + c.getURL( ) + "\nProtocol: " +
   * c.getProtocol() + "\nHost: " + c.getHost() + "\nFile: " + c.getFile() +
   * "\nRef: " + c.getRef() + "\nQuery: " + c.getQuery() + "\nPort: " +
   * c.getPort() + "\nMethod: " + c.getRequestMethod()) ;
   
   * System.out.println( "Gonna openInputStream... " ); is =
   * c.openInputStream();
   
   * System.out.println( "Going to get Properties after OpeninputStream" );
   * b.append( "\nResponseCode: " + c.getResponseCode() + "\nResponseMessage:" +
   * c.getResponseMessage() + "\nContentLength: " + c.getLength() +
   * "\nContentType: " + c.getType() + "\nContentEncoding: " + c.getEncoding() +
   * "\nContentExpiration: " + c.getExpiration() + "\nDate: " + c.getDate() +
   * "\nLast-Modified: " + c.getLastModified() + "\n\n" );
   
   * System.out.println( "Done getting properties after OpenInputStream " );
   * int h = 0 ; while ( true ) { try {
   
   * System.out.println( "Gonna get HeaderFieldKey... " ); String key =
   * c.getHeaderFieldKey( h ); System.out.println( "Gonna get HeaderField... " );
   * System.out.println( h + ", HeaderFieldKey is: " + key ); String value =
   * c.getHeaderField( h ); System.out.println( h + ", HeaderField is: " +
   * value ); b.append ( key + ": " + value + "\n" ); h++ ; } catch (
   * Exception e ) { e.printStackTrace(); break; } }
   
   * TextBox t = new TextBox( "Http Test", b.toString(), 1024, 0 );
   * System.out.println ( b.toString() );
   
   * t.addCommand( reloadCommand ); t.addCommand( exitCommand );
   * t.setCommandListener( this ); display.setCurrent( t );
   *  } catch ( IOException ex ) { System.out.println( "Exception reading from
   * http" ); ex.printStackTrace(); } finally { try { if ( is != null ) {
   * is.close(); } if ( c != null ) { c.close(); } } catch( Exception e ) {
   * e.printStackTrace(); }
   *  } }
   */

  /**
   * Pause signals the thread to stop by clearing the thread field. If stopped
   * before done with the iterations it will be restarted from scratch later.
   */
  public void pauseApp() {
  }

  /**
   * Destroy must cleanup everything. The thread is signaled to stop and no
   * result is produced.
   */
  public void destroyApp(boolean unconditional) {
  }

  /*
   * Respond to commands, including exit
   */
  public void commandAction(Command c, Displayable s) {
    if (c == exitCommand) {
      destroyApp(false);
      notifyDestroyed();
    else if (c == reloadCommand)
      readPage();
    else if (c == headCommand)
      headPage();
  }

}




           
       
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. 使用Java servlets会议统计高尔夫分数
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.