6

For educational purposes I tried to make a server and client where the server receives data from multiple clients and echoes each message. The problem is when I try to make the server send the echo to all of the clients at once.

public class SocketServer {
  ArrayList<MyRunnable> ts = new ArrayList<MyRunnable>();
  ServerSocket serv;
  static MainServerThread mst = new MainServerThread();
//                                  ^ IDE(eclipse) underlines this as the problem
  SocketServer() {
    EventQueue.invokeLater(mst);
  }

  public static void main(String[] args) { 
    Thread tr = new Thread(mst);
    tr.start();
  }

  void send(String s) {
    for (int i = 0; i < ts.size(); i++) {
      MyRunnable tmp = ts.get(i);
      tmp.sendToClient(s);
    }
  }

  class MainServerThread implements Runnable {
    public void run() {
      try {
        serv = new ServerSocket(13131);
        boolean done = false;
        while (!done) {
          Socket s = serv.accept();
          MyRunnable r = new MyRunnable(s);
          Thread t = new Thread(r);
          ts.add(r);
          t.start();
        }
      } catch(Exception e) {
        e.printStackTrace();
      }
    }
  }

  class MyRunnable implements Runnable {
    Socket sock;
    PrintWriter out;
    Scanner in;
    MyRunnable(Socket soc) {
      sock = soc;
    }

    public void run() {
      try {
        try {
          out = new PrintWriter(sock.getOutputStream(), true);
          in = new Scanner(sock.getInputStream());
          boolean done = false;
          while (!done) {
            String line = in.nextLine();
            send("Echo: " + line);
            System.out.println("Echo: " + line);
            if (line.trim().equals("BYE")) done = true;
          }
        } finally {
          sock.close();
        }
      } catch (Exception e) {
        e.printStackTrace();
      }
    }

    public void sendToClient(String s) {
      out.println(s);
    }
  }
}    

I have searched for and answer and saw many similar questions, but none of them helped me. Hope you can point out my mistake. Thanks in advance.

Adam Liss
  • 47,594
  • 12
  • 108
  • 150
Boblob
  • 109
  • 2
  • 2
  • 8
  • 1
    Possible duplicate of [Java - No enclosing instance of type Foo is accessible](http://stackoverflow.com/questions/9560600/java-no-enclosing-instance-of-type-foo-is-accessible) – Raedwald Mar 02 '16 at 22:35

1 Answers1

15

Your nested class requires an instance of the outer class, because it's not static - but you don't have an instance of the outer class.

Try making both of your nested classes static. It doesn't look like they need a reference to the outer class anyway.

In fact, I'd be tempted to avoid using nested classes at all for this - while nested classes can certainly be useful sometimes, they have various corner cases, and it's typically cleaner to create separate top-level types.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194
  • This was the problem thanks. I had a class stuffed with Enums and an inner class as well. I was taking a too C# approach to Java programming. – fIwJlxSzApHEZIl Oct 22 '13 at 22:04