実行中のマシンのポート 4444 をリッスンし、すべての着信データをログに記録するプログラムを作成しようとしています。
これはこれまでの私のコードです。
import java.io.*;
import java.net.*;
public class Foo {
URL url;
URLConnection connection;
InputStreamReader stream;
BufferedReader in;
String inputLine;
int test = 0;
public Foo()
{
Connect();
}
public static void main(String[] args)
{
Foo bridge = new Foo();
System.out.println("made the class");
for(;;)
{
System.out.println("in the loop");
try
{
System.out.println("making the try");
if((bridge.inputLine = bridge.in.readLine()) != null)
{
System.out.println("reading the line");
System.out.println(bridge.inputLine);
}
}
/*catch(NullPointerException n)
{
System.out.println(bridge.test);
bridge.test++;
}*/
catch(Exception e)
{
System.out.println("MAIN" + e);
}
}
}
public int Connect()
{
try
{
System.out.println("starting the constructor");
URL url = new URL("http", "192.168.0.104", 4444, "");
System.out.println("url ready");
URLConnection connection = url.openConnection();
System.out.println("connection ready");
//connection.setReadTimeout(5000);
connection.setDoInput(true);
InputStreamReader stream = new InputStreamReader(connection.getInputStream());
System.out.println("stream ready");
BufferedReader in = new BufferedReader(stream);
//BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
System.out.println("bufferReader ready");
return 0;
}
catch(Exception e)
{
System.out.println("CON" + e);
}
return 1;
}
}
実行すると、これが出力として得られます。
D:\temp_104\foo>java -cp . foo
starting the constructor
url ready
connection ready
入力ストリームを作成しようとするとハングするたびに。ハイパーターミナルでテストしたところ、サーバーはメッセージを出力しており、ポート 4444 に接続できます。Java 1.5.0_15 を実行していますが、更新できません。
誰かが私が間違っていることを見ることができますか?