Results 1 to 2 of 2
Thread: ConnectException not found
- 07-23-2007, 02:04 AM #1
Member
- Join Date
- Jul 2007
- Posts
- 4
- Rep Power
- 0
ConnectException not found
Hi, I´m writing a socket app, when I try to compile it, i obtained the error in the main "can´t find the symbol"
Symbol: class ConnectException
But i don't get why I obtained that error, because when I define the socket it does not problem with that, so here is my code:
Thanks for your help
Java Code://THESE ARE MY IMPORTS import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.io.*; import javax.net.*; import java.net.Socket; public class sslcliente extends JFrame { //declarando variables Sesion sesion; //incluir este hilo PrintStream prntextofuera; BufferedReader rdrtextodentro; Socket sktcliente; ..... public sslcliente () { super ("sslcliente"); sktcliente=new Socket("localhost", 9000); //parametrizar prntextofuera=new PrintStream(sktcliente.getOutputStream()); rdrtextodentro=new BufferedReader(new InputStreamReader(sktcliente.getInputStream())); sesion=new Sesion(this); sesion.start(); .... }//end of sscliente function //THIS IS MY MAIN: public static void main(String[] args) throws IOException, ConnectException{ try{ sslcliente xcliente = new sslcliente(); xcliente.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); }//fin de try catch(Exception e){ JOptionPane.showMessageDialog(null,"Error al conectarse"); System.exit(0); }//fin de catch }//fin de del metodo main }//end of sslcliente jframeLast edited by JavaBean; 07-23-2007 at 08:22 AM. Reason: Code placed inside [code] tag
- 07-23-2007, 08:23 AM #2
Similar Threads
-
could not be found in the registry
By alam99 in forum EclipseReplies: 0Last Post: 01-08-2008, 08:21 AM -
404 Not Found
By mary in forum Java ServletReplies: 5Last Post: 11-07-2007, 10:15 AM -
Exception in thread "main" java.net.ConnectException: Connection timed out
By osval in forum Advanced JavaReplies: 1Last Post: 07-27-2007, 10:59 PM -
java.net.ConnectException: Connection refused
By Albert in forum Advanced JavaReplies: 2Last Post: 07-03-2007, 04:49 PM -
Hibernate table not found
By orchid in forum JDBCReplies: 2Last Post: 05-06-2007, 07:44 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks