This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Sockets and Internet Protocols and the fly likes java socket programming Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Sockets and Internet Protocols
Reply Bookmark "java socket programming" Watch "java socket programming" New topic
Author

java socket programming

nayomi gunawardena
Greenhorn

Joined: Sep 17, 2011
Posts: 6
import java.net.Socket;

public class MyClient {
public static void main(String[] args) {
try {
Socket socket = new Socket("127.0.0.1", 20000);
} catch(Exception e) {

System.out.println(e.getMessage());
e.printStackTrace();
}
}
}

how to see what exception is thrown in the above code snippet??
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35241
    
    7
Doesn't the "e.printStackTrace()" do that?


Android appsImageJ pluginsJava web charts
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

It should, and otherwise there's still e.getClass().


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
nayomi gunawardena
Greenhorn

Joined: Sep 17, 2011
Posts: 6
ok thanks alot guyzz
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: java socket programming
 
Similar Threads
Help me out to solve the exception
NotSerializableException with java.net.Socket
Please help me out for the socket connection
Producer/Consumer Design impacts exception handling
Error in calling shutDownInput and shutDownOutput