当前位置:   article > 正文

模拟一个Web服务器_模拟服务器

模拟服务器
import java.io.*;
import java.net.*;
public class MyWebServer
{
    public static void main(String []args) throws Exception{

        ServerSocket ss=new ServerSocket(80);

            Socket s=ss.accept();
            System.out.println("在 80上等待连接...");
            OutputStream os=s.getOutputStream();
            BufferedReader br=new BufferedReader(new FileReader("d:\\hello.html"));
            String buf="";
            while((buf=br.readLine())!=null){
                os.write(buf.getBytes());
            }

        //关闭流
        br.close();
        os.close();
        s.close();


    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/216992
推荐阅读
相关标签
  

闽ICP备14008679号