标签:style blog class code java color
import java.net.*; import java.io.*; /* * 演示浏览器访问Web服务器的处理过程 */ public class WebServerDemo { public static void main(String[] args)throws IOException{ ServerSocket ss=new ServerSocket(10000); Socket s=ss.accept(); byte[] bytes=new byte[1024]; int len=0; InputStream is=s.getInputStream(); len=is.read(bytes); System.out.println("读取得字节数:"+len); System.out.println(new String(bytes)); //向浏览器写入内容 OutputStream os=s.getOutputStream(); os.write("<h1 style=‘color:red‘>您好,浏览器!</h1>".getBytes()); s.close(); ss.close(); } }
//在浏览器输入http://127.0.0.1:10000
java程序模拟浏览器访问Web服务器的处理过程,布布扣,bubuko.com
标签:style blog class code java color
原文地址:http://blog.csdn.net/hellozpc/article/details/25339193