HTTP服务器 : Web服务器 « 应用程序 « 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 » 应用程序 » Web服务器屏幕截图 
HTTP服务器


import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.StringTokenizer;

public class httpServer {
  public static void main(String args[]) {
    int port;
    ServerSocket server_socket;
    try {
      port = Integer.parseInt(args[0]);
    catch (Exception e) {
      port = 1500;
    }
    try {

      server_socket = new ServerSocket(port);
      System.out.println("httpServer running on port "
          + server_socket.getLocalPort());

      // server infinite loop
      while (true) {
        Socket socket = server_socket.accept();
        System.out.println("New connection accepted "
            + socket.getInetAddress() ":" + socket.getPort());

        // Construct handler to process the HTTP request message.
        try {
          httpRequestHandler request = new httpRequestHandler(socket);
          // Create a new thread to process the request.
          Thread thread = new Thread(request);

          // Start the thread.
          thread.start();
        catch (Exception e) {
          System.out.println(e);
        }
      }
    catch (IOException e) {
      System.out.println(e);
    }
  }
}

class httpRequestHandler implements Runnable {
  final static String CRLF = "\r\n";

  Socket socket;

  InputStream input;

  OutputStream output;

  BufferedReader br;

  public httpRequestHandler(Socket socketthrows Exception {
    this.socket = socket;
    this.input = socket.getInputStream();
    this.output = socket.getOutputStream();
    this.br = new BufferedReader(new InputStreamReader(socket
        .getInputStream()));
  }

  public void run() {
    try {
      processRequest();
    catch (Exception e) {
      System.out.println(e);
    }
  }

  private void processRequest() throws Exception {
    while (true) {

      String headerLine = br.readLine();
      System.out.println(headerLine);
      if (headerLine.equals(CRLF|| headerLine.equals(""))
        break;

      StringTokenizer s = new StringTokenizer(headerLine);
      String temp = s.nextToken();

      if (temp.equals("GET")) {

        String fileName = s.nextToken();
        fileName = "." + fileName;

        FileInputStream fis = null;
        boolean fileExists = true;
        try {
          fis = new FileInputStream(fileName);
        catch (FileNotFoundException e) {
          fileExists = false;
        }
        String serverLine = "Server: Simple Java Http Server";
        String statusLine = null;
        String contentTypeLine = null;
        String entityBody = null;
        String contentLengthLine = "error";
        if (fileExists) {
          statusLine = "HTTP/1.0 200 OK" + CRLF;
          contentTypeLine = "Content-type: " + contentType(fileName)
              + CRLF;
          contentLengthLine = "Content-Length: "
              (new Integer(fis.available())).toString() + CRLF;
        else {
          statusLine = "HTTP/1.0 404 Not Found" + CRLF;
          contentTypeLine = "text/html";
          entityBody = "<HTML>"
              "<HEAD><TITLE>404 Not Found</TITLE></HEAD>"
              "<BODY>404 Not Found"
              "<br>usage:http://yourHostName:port/"
              "fileName.html</BODY></HTML>";
        }

        // Send the status line.
        output.write(statusLine.getBytes());
        System.out.println(statusLine);

        // Send the server line.
        output.write(serverLine.getBytes());
        System.out.println(serverLine);

        // Send the content type line.
        output.write(contentTypeLine.getBytes());
        System.out.println(contentTypeLine);

        // Send the Content-Length
        output.write(contentLengthLine.getBytes());
        System.out.println(contentLengthLine);

        // Send a blank line to indicate the end of the header lines.
        output.write(CRLF.getBytes());
        System.out.println(CRLF);

        // Send the entity body.
        if (fileExists) {
          sendBytes(fis, output);
          fis.close();
        else {
          output.write(entityBody.getBytes());
        }

      }
    }

    try {
      output.close();
      br.close();
      socket.close();
    catch (Exception e) {
    }
  }

  private static void sendBytes(FileInputStream fis, OutputStream os)
      throws Exception {

    byte[] buffer = new byte[1024];
    int bytes = 0;

    while ((bytes = fis.read(buffer)) != -1) {
      os.write(buffer, 0, bytes);
    }
  }

  private static String contentType(String fileName) {
    if (fileName.endsWith(".htm"|| fileName.endsWith(".html")
        || fileName.endsWith(".txt")) {
      return "text/html";
    else if (fileName.endsWith(".jpg"|| fileName.endsWith(".jpeg")) {
      return "image/jpeg";
    else if (fileName.endsWith(".gif")) {
      return "image/gif";
    else {
      return "application/octet-stream";
    }
  }
}

           
       
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.