How to resolve the java net ConnectException in Java

0 votes
I am trying to establish a TCP connection, but I am getting java.net.ConnectionException. How to resolve it?
Jun 4, 2018 in Java by Daisy
• 8,140 points
3,204 views

1 answer to this question.

0 votes

If you are getting java.net.ConnectionException, it means no port is listening your request.Following are the condition which will give this exception.

  • You are trying to connect wrong port.
  • You have not started your server.
  • Your server is not listening to the request.

Before running the server:

  • You should check the port number and host name.
  • There should not be any firewall, which will restrict the connection.
answered Jun 4, 2018 by Akrati
• 3,190 points

Related Questions In Java

0 votes
1 answer

How do I resolve the "java.net.BindException: Address already in use: JVM_Bind" error?

If you are aware about what port ...READ MORE

answered Feb 22, 2022 in Java by Aditya
• 7,680 points
6,021 views
0 votes
1 answer

How to print java array in the simplest way?

String[] arr = new String[] {"John", "Mary", ...READ MORE

answered Apr 17, 2018 in Java by sophia
• 1,400 points
1,557 views
0 votes
1 answer

How to calculate the difference between two date instances in Java?

You can use Joda Time Library. Interval i ...READ MORE

answered May 4, 2018 in Java by Parth
• 4,640 points
1,826 views
0 votes
3 answers

How to clear the console in Java?

System.out.println("\f"); You can paste the above ↑↑ code ...READ MORE

answered Jan 29, 2021 in Java by https://github.com/voyager2005

edited Mar 5, 2025 38,090 views
0 votes
1 answer

How do I fix a NullPointerException?

When you declare a reference variable (i.e. ...READ MORE

answered Apr 13, 2018 in Java by Parth
• 4,640 points
1,787 views
0 votes
2 answers

Does the finally block always execute in Java?

If there is System.exit() present in the ...READ MORE

answered May 28, 2022 in Java by Abhishek

edited Mar 5, 2025 3,065 views
0 votes
1 answer

What is ArrayIndexOutOfBoundsException ?

If You check System.out.print(names.length); you will get 3 ...READ MORE

answered May 11, 2018 in Java by sharth
• 3,370 points
1,834 views
0 votes
1 answer

How can we resolve ClassNotFoundException in Java?

Your classpath is broken. Depending on how you ...READ MORE

answered May 22, 2018 in Java by Akrati
• 3,190 points
2,105 views
0 votes
2 answers

How to break the nested loop in Java?

You can use break with a label for the ...READ MORE

answered Sep 20, 2018 in Java by Sushmita
• 6,920 points
2,229 views
0 votes
1 answer

How to read text files from the Classpath in Java?

InputStream in = this.getClass().getClassLoader().getResourceAsStream("TextFile.txt"); InputStream in = this.getClass().getResourceAsStream("/TextFile.txt"); package ...READ MORE

answered May 8, 2018 in Java by Akrati
• 3,190 points
3,693 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP