我有一台服务器,其端口80用于HTTP事务。我想查看该端口中的流量,因此尝试使用套接字程序监听该端口。
public Server(int serverPort) throws IOException {
super(serverPort);
try {
while (true) {
Socket socket = accept();
new ServerThread(socket);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
close();
}
}
// inner-class ServerThread
class ServerThread extends Thread {
private Socket socket;
private BufferedReader in;
private PrintWriter out;
// Ready to conversation
public ServerThread(Socket s) throws IOException {
this.socket = s;
in = new BufferedReader(new InputStreamReader(socket
.getInputStream(), "UTF-8"));
out = new PrintWriter(socket.getOutputStream(), true);
start();
}
// Execute conversation
public void run() {
try {
// Communicate with client until "bye " received.
while (true) {
String line = in.readLine();
if (line == null || "".equals(line.trim())) {
break;
}
System.out.println("Received message: " + line);
out.println(line);
out.flush();
}
out.close();
in.close();
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) throws IOException {
new Server(80);
}
但是,当我运行该Java应用程序时,它显示了BindException:地址已在使用中。
那么我应该对我的代码做些什么,使其监听80端口,或者在Java中还有其他方法可以监听该端口吗?
答案 0 :(得分:1)
如果我对您的理解正确,那么您正在尝试嗅探正在传递到服务器的数据包。在这种情况下,this帖子中会有一些答案。
答案 1 :(得分:0)
您要在哪个服务器上运行它?
这完全取决于您正在使用的服务器的类型。例如,Tomcat在Server.xml文件中具有正在运行的端口类型。
答案 2 :(得分:0)
在Windows中,您可以由管理员运行程序。在Linux中,使用root用户。