Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would really appreciate help with my program. It is some sort of chat server with multiple clients. Here's the server code:

package com.server;

import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;


public class Server {
    public static int PORT;
    private ServerSocket server;
    private Socket socket;

    public Server(int port) throws IOException {
        PORT = port;
        server = new ServerSocket(PORT);
        System.out.println("server started");
        try {
            while (true) {
                socket = server.accept();
                try {
                    new ServeClient(socket);
                } catch (IOException e) {
                    socket.close();
                }
            }
        } finally {
            server.close();
        }

    }

    public static void main(String[] args) throws IOException {
        int port = Integer.parseInt(args[0]);
        Server server = new Server(port);
    }

}

I start the server and then create a Client. The server receives connection socket from socket and creates a ServeClient Thread. Here's ServeClient code:

package com.server;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.Enumeration;
import java.util.Vector;

import com.gui.WindowManager;

public class ServeClient extends Thread {
    private final Socket socket;
    private BufferedReader in;
    private PrintWriter out;
    private String msg;
    public static final String ENDSTRING = "END";
    public static Vector clients = new Vector();

    public ServeClient(final Socket socket) throws IOException {
        this.socket = socket;
        System.out.println("socket " + socket);
        in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
        out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(
                socket.getOutputStream())), true);
        start();
    }

    public void run() {
        try {
            clients.add(this);
            while (true) {
                msg = in.readLine();
                if (msg == ENDSTRING)
                    break;
                broadcast(msg);
            }
            System.out.println("closing...");
        } catch (IOException e) {
            System.err.println("IO EXCEPTION");
        } finally {
            try {
                socket.close();
            } catch (IOException e) {
                System.err.println("SOCKET NOT CLOSED");
            }
        }
    }

    @SuppressWarnings("deprecation")
    public void broadcast(String msg) {
        synchronized (clients) {
            Enumeration<ServeClient> e = clients.elements();
            while (e.hasMoreElements()) {
                ServeClient serveClient = e.nextElement();
                try {
                    synchronized (serveClient.out) {
                        serveClient.out.println(msg);
                    }
                } catch (Exception eee) {
                    serveClient.stop();
                }
            }
        }
    }
}

What i get is a NullPointerException when ServeClient invokes run() method

server started
socket Socket[addr=/127.0.0.1,port=51438,localport=8888]
Exception in thread "Thread-0" java.lang.NullPointerException
    at com.server.ServeClient.run(ServeClient.java:33)

line 33 is the line with first "try" statement in ServeClient run() method

share|improve this question
The stack trace tells you at which line the exception happens: ServeClient.java:33. Which line is it? Also, you should never compare strings with ==. Use equals. – JB Nizet Sep 29 '11 at 22:01
The code works on my machine. I'd almost care to guess you've got a broken Java setup or something. – Dolda2000 Sep 29 '11 at 23:11
random thought: is the port in use? try changing it – Christian Jonassen Sep 30 '11 at 3:03

2 Answers

com.server.ServeClient.run(ServeClient.java:33)

I don't believe that it's happening at the try.

Open up an IDE, turn on debugging, and step through until you can see what's happening. That's the fastest way to figure out what you've missed.

There's an object that you're assuming is fine that is not. Find it.

Here's an example of how to do this properly:

http://www.kodejava.org/examples/216.html

share|improve this answer
Ok, i tried to bug this whole thing, and the NullPointerException is occuring in Thread class after invoking start0() method. Now i don't understand completely anything ((( – poss Sep 29 '11 at 22:41
Do you mean you tried to debug it? What IDE are you using? – duffymo Sep 29 '11 at 23:09
i am using Eclipse, sry i misspelled, ofc i debuged it – poss Sep 30 '11 at 2:14

Your problem is with the order in which static instance variables are initialised. Try doing something like:

...
private static Vector clients = null;
...
if (clients==null) {
    clients = new Vector(); // consider putting this in a synchronized block
}

before you add the client to the vector.

share|improve this answer
I added this code, and it didn't help (( – poss Sep 29 '11 at 22:44
That is not a problem at all. The static initializers run when the class is initialized, which is certain to be before the class is instantiated and, therefore, before any non-static code in it runs. – Dolda2000 Sep 29 '11 at 23:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.