Java——简单代理服务器实现.doc_第1页
Java——简单代理服务器实现.doc_第2页
Java——简单代理服务器实现.doc_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

这个程序主要实现的是一个简单的代理功能。用户请求代理,代理请求指定页面再原封不动的传回客户端,代码如下:import java.io.*;import .*;import java.util.*;import java.awt.*;import javax.swing.*;public class ProxyServer extends JFrame private JTextArea jta =new JTextArea();/create an JTextArea to output some informationpublic static void main(String args)new ProxyServer();public ProxyServer() setLayout(new BorderLayout();add(new JScrollPane(jta), BorderLayout.CENTER);setTitle(Proxy Server by Li Zhaoji);setSize(500, 300);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setVisible(true);tryServerSocket serverSocket = new ServerSocket(8081);/Listening port 8081jta.append(Proxy Server started at + new Date() + n);jta.append(Proxy Server is listening on port +serverSocket.getLocalPort() + n + n);int clientNo = 1;while (true) Socket socket = serverSocket.accept();jta.append(1*1 + n);jta.append(Starting thread for client + clientNo + at + new Date() + n);InetAddress inetAddress = socket.getInetAddress();/get the host PCs informationjta.append(Client + clientNo + s host name is + inetAddress.getHostName() + n);jta.append(Client + clientNo + s IP Address is + inetAddress.getHostAddress() + n);HandleClient task = new HandleClient(socket);new Thread(task).start();/start a new thread to handle the require of the hostclientNo+;catch(IOException ex) System.err.println(ex);class HandleClient implements Runnable private Socket socket;public HandleClient(Socket socket)this.socket = socket;public void run() tryBufferedReader inputFromClient = new BufferedReader(new InputStreamReader(socket.getInputStream();PrintStream outputToClient = new PrintStream(socket.getOutputStream();String str = inputFromClient.readLine();/read the GET require string from Hostjta.append(The require from Client: + str + n);String inurl = str.substring(4, str.indexOf(HTTP/)-1);/get the URL string from GET jta.append(The require URL: + inurl + n);URL url = new URL(inurl);InputStream infile = url.openStream();/the input stream that get the data from Web Serverint n = infile.available();/the number of bytes that accept from Web Serverbyte buf = new byte1024;while(n = infile.read(buf) = 0)outputToClient.write(buf, 0, n);/start send with buf0, send n bytesoutputToClient.close();socket.close();inputFromClient.close();jta.append(socket has been closed! + n)

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论