命令行界面到Web服务器 : JSP调试 « JSP技术 « 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 » JSP技术 » JSP调试屏幕截图 
命令行界面到Web服务器


/**
*  Copyright (c) 2002 by Phil Hanna
*  All rights reserved.
*  
*  You may study, use, modify, and distribute this
*  software for any purpose provided that this
*  copyright notice appears in all copies.
*  
*  This software is provided without warranty
*  either expressed or implied.
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
* Mainline for running the Web client
*/
public class MainWebClient
{
   /**
   * Reads command line parameters, creates a new
   * <code>WebClient</code> object, then invokes it.
   */
   public static void main(String[] args)
      throws IOException
   {
      // Default values

      String host = "localhost";
      int port = 80;

      // Use values from command line, if specified

      for (int i = 0; i < args.length; i++) {
         String arg = args[i];
         if (arg.equals("-h"|| arg.equals("-help")) {
            showUsage();
            return;
         }
         else
         if (arg.equals("-host"&& ++i < args.length)
            host = args[i];
         else
         if (arg.equals("-port"&& ++i < args.length)
            port = Integer.parseInt(args[i]);
      }

      // Create and start the Web client

      new WebClient(host, port).run();
   }

   /**
   * Displays the calling syntax
   */
   private static void showUsage()
   {
      String[] text = {
         "usage: java com.jspcr.debug.webclient.Main"
         " [-host <hostName>]"
         " [-port <portNumber>]",
      };
      for (int i = 0; i < text.length; i++)
         System.out.println(text[i]);
   }
}


/**
*  Copyright (c) 2002 by Phil Hanna
*  All rights reserved.
*  
*  You may study, use, modify, and distribute this
*  software for any purpose provided that this
*  copyright notice appears in all copies.
*  
*  This software is provided without warranty
*  either expressed or implied.
*/

/**
* A command-line interface to a Web server
*/
class WebClient
{
   // Instance variables

   private String host;
   private int port;

   /**
   * Creates a new Web client
   @param host the HTTP server
   @param port the server port number
   */
   public WebClient(String host, int port)
   {
      this.host = host;
      this.port = port;
   }

   /**
   * Runs the Web client
   @throws IOException if a socket error occurs
   */
   public void run() throws IOException
   {
      int contentLength = 0;

      // Open a socket to the Web host

      Socket socket = new Socket(host, port);

      // Set up to read input from the user
      // and echo it to Web host

      BufferedReader in =
         new BufferedReader(new InputStreamReader(System.in));

      PrintWriter out =
         new PrintWriter(socket.getOutputStream()true);

      // The first line is the HTTP request
      // e.g., "GET /path HTTP/1.0"

      String line = in.readLine();
      out.println(line);

      // Read and echo any other headers, stopping
      // when a blank line is encountered.

      while ((line = in.readLine()) != null) {

         line = line.trim();
         out.println(line);
         if (line.equals(""))
            break;

         // Check for a Content-Length header

         Pattern p = Pattern.compile
            ("^\\s*([^:]+):\\s+(.*\\S)\\s*$");
         Matcher m = p.matcher(line);
         if (m.matches()) {
            String name = m.group(1);
            String value = m.group(2);
            if (name.equalsIgnoreCase("Content-Length"))
               contentLength = Integer.parseInt(value);
         }
      }

      // If a non-zero content length header was used,
      // read and echo that many bytes to the Web host.

      if (contentLength > 0) {
         for (int i = 0; i < contentLength; i++)
            out.print((charin.read());
         out.flush();
      }

      // The server is now working on the request.
      // Read its output and dump to stdout

      in = new BufferedReader(
           new InputStreamReader(socket.getInputStream()));

      out = new PrintWriter(System.out);

      for (;;) {
         line = in.readLine();
         if (line == null)
            break;
         out.println(line);
      }
      
      // Close files

      in.close();
      out.close();
      socket.close();
   }
}

           
       
Related examples in the same category
1. HTTP回波测试
2. HTTP跟踪工具
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.