私はチャットルームを持っていて、以前は機能していましたが、コードを少し変更していくつかのことを試してみましたが、機能しなかったため、元のコードに戻そうとしましたが、何が間違っていたのかわかりません。現在、NullPointerException がスローされています。私のコードには、PrintWriters の ArrayList と、それが示すように行うメソッド showAll() があります。チャットルームのすべての人にメッセージを送信します。基本的に、私が疑問に思っているのは、どうして例外が発生するのかということです。
//This is the main code, used to add printwriters to the arraylist and to connect to clients
//The Communicate thread is used to get input from users and use the showAll() method with that input
public void listen() {
listWriters = new ArrayList<PrintWriter>();
try {
scanner = new Scanner(System.in);
portnum = getPortNumber(scanner);
System.out.println("Listening on " + portnum);
serverSocket = new ServerSocket(portnum);
while(true) {
clientcommunicate = serverSocket.accept();
System.out.println("Connection accepted: " + clientcommunicate.toString());
PrintWriter client = new PrintWriter(clientcommunicate.getOutputStream(), true);
listWriters.add(client);
Thread t = new Thread(new Communicate(clientcommunicate));
t.start();
}
} catch (IOException ioe) {
System.err.println(ioe);
System.err.println("Error.");
System.exit(1);
}
}
//This uses a printwriter obtained in the Communicate thread; the thread initializes a socket in it with the socket obtained in the constructor
public void showAll(String msg, PrintWriter printwriter) {
for(int i = 0; i < listWriters.size(); i++) { //this is where the exception is thrown
if(!listWriters.get(i).equals(printwriter)) { //if I change the paramater listWriters.size() to a regular integer like 3, and only create 2 clients or even less, the exception is thrown here instead
listWriters.get(i).println(msg);
}
}
}
編集:
わかりましたので、エラーはもう発生していませんが、メッセージを送信できないようです。クライアント側からメッセージを送信すると、エラーは発生しませんが、どちらのクライアントにもメッセージが表示されません。