I am trying to create a thread to simply send the text to client. However, if you copy this code to IDE, you will see that there is a red underline under client.getOutputStream(). I do not know what is wrong here. The IDE says "Unhandled exception type IOException". Could anybody tell me?

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.ArrayList;
import java.util.List;

public class ServerStudentThread extends Thread {
  Socket client; 

  public ServerStudentThread(Socket x) {  
    client = x;  
  }

  public void run() {
    // create object to send information to client
    PrintWriter out = new  PrintWriter(client.getOutputStream(),true);

    out.println("Student name: ");//send text to client;
  }
}

For reference, here is the code that calls the thread.

import java.io.*;
import java.net.*;
import java.util.*;

public class Server2 {
  public static void main(String args[]) throws Exception {
    int PORT = 5555;      // Open port 5555

    //open socket to listen
    ServerSocket server = new ServerSocket(PORT);
    Socket client = null;

    while (true) {
      System.out.println("Waiting for client...");

      // open client socket to accept connection
      client = server.accept();

      System.out.println(client.getInetAddress()+" contacted ");
      System.out.println("Creating thread to serve request");

      ServerStudentThread student = new ServerStudentThread(client);
      student.start();
    }
  }
}
link|improve this question

1  
If you don't know what the red underline means have you tried compiling the code to get a compile message? – camickr Feb 12 '11 at 5:15
@camickr: it said Exception in thread "Thread-0" java.lang.Error: Unresolved compilation problem: Unhandled exception type IOException at ServerStudentThread.run(ServerStudentThread.java:21) – John Feb 12 '11 at 5:17
feedback

4 Answers

up vote 3 down vote accepted

It's probably that getOutputStream() can throw an exception and you're not catching it, try putting a try / catch (IOException e) around the block of code.

public void run() {
    try {
        // create object to send information to client    
        PrintWriter out = new  PrintWriter(client.getOutputStream(),true);
        out.println("Student name: ");//send text to client;
    } catch (IOException e) {
       throw new RuntimeException("It all went horribly wrong!", e);
    }
}
link|improve this answer
Thanks for reply. I am just beginner in Java. Yeah, I heard in Java we always need try and catch. Why? – John Feb 12 '11 at 5:25
@Kalla, thats why I provided you with the tutorial link so you can do some reading and not rely on people to post code. That way you understand the concept better. – camickr Feb 12 '11 at 5:30
feedback

So you need to add a try/catch block to handle the I/O exception.

Read the section on Exceptions from the Java tutorial.

link|improve this answer
Thanks – John Feb 12 '11 at 5:33
feedback

From the javadoc:

public OutputStream getOutputStream() throws IOException

IOException is a checked exception. You need to use a try/catch block to handle that possibility.

link|improve this answer
feedback

Kalla,

You need to either put the line in between try/catch block or declare run to throw IOException

link|improve this answer
The run method is specified by the Runnable interface, if the OP tries to throw a checked exception it will not adhere to the interface. I believe in this case the result will be an overloaded method and a Thread that does nothing when started. – Tim Bender Feb 12 '11 at 5:27
Not sure why is this downvoted? – geekGod Feb 12 '11 at 5:27
Thanks for reply. I did not downvote. Somebody did it. – John Feb 12 '11 at 5:30
feedback

Your Answer

 
or
required, but never shown

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