操作Java实现Web服务器[Java编程]
本文“操作Java实现Web服务器[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
1、HTTP协议的作用原理
HTTP协议的工作原理包含四个步骤:
1.衔接:Web浏览器与Web服务器成立衔接.
2.恳求:Web浏览器通过socket向Web服务器提交恳求.
3.应答:Web浏览器提交恳求后,通过HTTP传送给Web服务器.Web服务器接到恳求后,举行事件处理,处理后果又通过HTTP传回给Web浏览器,从而在Web浏览器上显示出所恳求的页面.
4.关系衔接:当应答完毕后,Web浏览器与Web服务器必须断开,以保证别的Web浏览器可以与Web服务器成立衔接.
2、用Java实现Web服务器的程序计划
按照上述HTTP协议的作用原理,实现GET恳求的Web服务器程序的办法以下:
1.成立ServerSocket类对象,监听端口8080.这是为了辨别于HTTP的尺度TCP/IP端口80而取的;2.等候、承受客户机衔接到端口8080,得到与客户机衔接的socket;3.成立与socket关联的输入流instream和输入出流outstream;
格局为:GET途径/文件名HTTP/1.0;4.从与socket关联的输入流instream中读取一行客户机提交的恳求信息,恳求信息的格局为:GET途径/文件名HTTP/1.0;5.从恳求信息中获得恳求范例.假如恳求范例是GET,则从恳求信息中获得所拜候的HTML文件名.没有HTML文件名时,则以index.htm1作为文件名;6.假如HTML文件存在,则翻开HTML文件,把HTTP头信息和HTML文件内容通过socket传回给Web服务器,然后关闭文件,不然发送错误信息给Web浏览器;7.关闭与呼应Web浏览器衔接的socket字.
下面的程序是按照上述办法编写的,可实现多线程的Web服务器,以保证多个客户机能同时与该Web服务器衔接.
//WebServer.java用Java编写Web服务器
import java.io.*;
import java.net.*;
import java.util.Date;
public class WebServer{
public static void main(String args[])
{
int i=1,PORT=8080;
ServerSocket server=null;
Socketclient=null;
try{
server=new ServerSocket(PORT);
System.out.println("Web Server is listening on port"
+server.getLocalPort());
for(;;){
client=server.accept();
//承受客户机的衔接恳求
new Connection Thread(client,i).start();
i++;
}
}catch(Exception e){System.out.println(e);}
}
}
/*Connnection Thread类完成
与一个Web浏览器的通信*/
class Connection Thread extends Thread{
Socket client;//衔接Web浏览器的socket字
int counter;//计数器
public Connection Thread(Socketcl,int c){
client=cl;
counter=c;
}
public void run()//线程体
{
try{
String deskIP=client.getInetAddress().toString();
//客户机IP地址
int destport=client.getPort();
//客户机端口号
System.out.println ("Connecction"+counter+":
connected to "+destIP+"on port"+destport+".");
PrintStream outstream=new printStream(client.getOoutputStream());
DataInputStreaminstream+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);
if(file.exists()){
//若文件存在,则将文件送给Web浏览器
System.out.println(filename+"requested.");
outstream.println("HTTP/1.0200OK");
outstream.println("MIME_version:1.0");
outstream.println("Content_Type:text/htm1");
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><hl>Error404-File notfound
</hl></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(m10)
{
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(String IndexOutOfBoundsException e){
System.out.println("Exception:"+e);
}
if(f.equals(""))f="index.html";
return f;
}
/*把指定文件发送给Web浏览器*/
void sendfile(PrintStream outs,File file){
try{
DataInputStreamin=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){
System.out.println("Error retrieving file.");
System.exit(1);
}
}
}
程序中的Connection Thread线程子类用来解析一个Web浏览器提交的恳求,并将应答信息传回给Web浏览器.此中,getrequest()办法用来检测客户的恳求能否为"GET";getfilename(s)办法是从客户恳求信息s中获得要拜候的HTML文件名;sendfile()办法把指定文件内容通过socket传回给Web浏览器.
以上是“操作Java实现Web服务器[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
- ·上一篇文章:操作Java实现串口全双工通讯
- ·下一篇文章:Java加密技术(十)
- ·中查找“操作Java实现Web服务器”更多相关内容
- ·中查找“操作Java实现Web服务器”更多相关内容