代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
实现简单的 web容器,HTTP协议
作者:
dezai
/ 发布于
2014/2/8
/
361
WebServer.java /* * $RCSfile: WebServer.java,v $ * $Revision: 1.1 $ * $Date: 2009-2-20 $ * * Copyright (C) 2005 Bettem, Inc. All rights reserved. * * This software is the proprietary information of Bettem, Inc. * Use is subject to license terms. */ package com.lihan; /** * Title: WebServer * Description: * Copyright: Copyright (c) 2006 * @author 李晗 * @version 1.0 */ import java.net.*; public class WebServer { public static void main(String args[]) { int i = 1, PORT = 807; ServerSocket server = null; Socket client = null; try { server = new ServerSocket(PORT); System.out.println("Web Server is listening on port "+ server.getLocalPort()); for (;;) { client = server.accept(); // 接受客户机的连接请求 new ConnectionThread(client, i).start(); i++; } } catch (Exception e) { e.printStackTrace(); } } } ConnectionThread.java /* * $RCSfile: ConnectionThread.java,v $ * $Revision: 1.1 $ * $Date: 2009-2-20 $ * * Copyright (C) 2005 Bettem, Inc. All rights reserved. * * This software is the proprietary information of Bettem, Inc. * Use is subject to license terms. */ package com.lihan; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.PrintStream; import java.net.Socket; /** * * Title: ConnectionThread * * * Description: * * * Copyright: Copyright (c) 2006 * * * @author 李晗 * @version 1.0 */ class ConnectionThread extends Thread { Socket client; // 连接Web浏览器的socket字 int counter; // 计数器 public ConnectionThread(Socket cl, int c) { client = cl; counter = c; } public void run() // 线程体 { try { PrintStream outstream = new PrintStream(client.getOutputStream()); System.out.println("aaa"+client.getOutputStream()); DataInputStream instream = new DataInputStream(client.getInputStream()); String inline = instream.readLine(); // 读取Web浏览器提交的请求信息,主要是这里,获取协议 System.out.println("Received:" + inline); if (getrequest(inline)) { // 如果是GET请求 String filename = getFilename(inline); File file = new File(filename); System.out.println("File Path:"+file.getAbsolutePath()); if (file.exists()) { // 若文件存在,则将文件送给Web浏览器 outstream.println("HTTP/1.0 200 OK"); outstream.println("MIME_version:1.0"); outstream.println("Content_Type:text/html"); int len = (int) file.length(); outstream.println("Content_Length:" + len); outstream.println(""); sendFile(outstream, file); // 发送文件 outstream.flush(); } else { // 文件不存在时 String notfound = "<html><head><title>Not Found</title></head><body><h1>Error 404-file not found</h1></body></html>"; outstream.println("HTTP/1.0 404 no found"); outstream.println("Content_Type:text/html"); outstream.println("Content_Length:" + notfound.length() + 2); outstream.println(""); outstream.println(notfound); outstream.flush(); } } long m1 = 1; while (m1 < 11100000) { m1++; } // 延时 client.close(); } catch (IOException e) { e.printStackTrace(); } } /* 获取请求类型是否为“GET” */ boolean getrequest(String s) { if (s.length() > 0) { if (s.substring(0, 3).equalsIgnoreCase("GET")) { return true; } } return false; } /* 获取要访问的文件名 */ String getFilename(String s) { String f = s.substring(s.indexOf(' ') + 1); f = f.substring(0, f.indexOf(' ')); try { if (f.charAt(0) == '/') { f = f.substring(1); } } catch (StringIndexOutOfBoundsException e) { System.out.println("Exception:" + e); } if (f.equals("")) { f = "index.html";//设置默认首页 } return f; } /* 把指定文件发送给Web浏览器 */ void sendFile(PrintStream outs, File file) { try { DataInputStream in = new DataInputStream(new FileInputStream(file)); int len = (int) file.length(); byte buf[] = new byte[len]; in.readFully(buf); outs.write(buf, 0, len); outs.flush(); in.close(); } catch (Exception e) { e.printStackTrace(); System.exit(1); } } }
试试其它关键字
HTTP协议
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3