Click here to Skip to main content
15,887,351 members
Home / Discussions / Java
   

Java

 
GeneralRe: label in java Pin
Nagy Vilmos7-May-09 22:30
professionalNagy Vilmos7-May-09 22:30 
Questionhelp in coding aprogram Pin
harshad bhatia6-May-09 22:01
harshad bhatia6-May-09 22:01 
AnswerRe: help in coding aprogram Pin
Nagy Vilmos6-May-09 22:05
professionalNagy Vilmos6-May-09 22:05 
GeneralWelcome in the CP's memorable quotes list Pin
CPallini8-May-09 11:12
mveCPallini8-May-09 11:12 
Questionhi Pin
yogesh_softworld1236-May-09 15:11
yogesh_softworld1236-May-09 15:11 
AnswerRe: hi Pin
fly9046-May-09 23:04
fly9046-May-09 23:04 
GeneralRe: hi Pin
EliottA8-May-09 5:58
EliottA8-May-09 5:58 
Questiontcp server applet Pin
rareseu6-May-09 7:23
rareseu6-May-09 7:23 
Hy guys ! i'm having a problem getting my tcp server applet on it's feet, the problem is that it doesn't get past instantiating a socket, if i instatiate it with port nr 80 it throws an exception ( Address already in use: JVM_Bind ), with other ports it just locks up at the "binding port" part

        ServerSocket server;
        int port= Integer.parseInt(portNumber.getText());//port number's a text field
        status.setText("Starting server..\n");//status is a text area

        try {
            status.append("Binding to port " + port + ", please wait  ...\n");
            server = new ServerSocket(port);
        } catch (IOException ioe) {
            status.append("EROARE la creearea socketului\nEXCEPTIE:
"+ioe.getMessage()+"\n");
            return;
        }


does anybody have a clue why this happens?
AnswerRe: tcp server applet Pin
rareseu6-May-09 10:02
rareseu6-May-09 10:02 
AnswerRe: tcp server applet Pin
zhaonameloc7-May-09 3:40
zhaonameloc7-May-09 3:40 
AnswerRe: tcp server applet Pin
Nagy Vilmos7-May-09 4:41
professionalNagy Vilmos7-May-09 4:41 
GeneralRe: tcp server applet Pin
rareseu7-May-09 8:04
rareseu7-May-09 8:04 
Questioncall c# function in java Pin
raesa5-May-09 1:41
raesa5-May-09 1:41 
AnswerRe: call c# function in java Pin
Nagy Vilmos5-May-09 2:37
professionalNagy Vilmos5-May-09 2:37 
GeneralRe: call c# function in java Pin
raesa5-May-09 2:40
raesa5-May-09 2:40 
AnswerRe: call c# function in java Pin
Vitaly Shelest5-May-09 9:32
Vitaly Shelest5-May-09 9:32 
GeneralRe: call c# function in java Pin
raesa5-May-09 17:30
raesa5-May-09 17:30 
Questionconvert integer to 8 bits Pin
lost_in_code5-May-09 1:28
lost_in_code5-May-09 1:28 
AnswerRe: convert integer to 8 bits Pin
harold aptroot5-May-09 1:59
harold aptroot5-May-09 1:59 
QuestionDraw on top of picture Pin
LordLothar5-May-09 1:02
LordLothar5-May-09 1:02 
Questionbinary search tree error compliation error Pin
harshad bhatia3-May-09 23:30
harshad bhatia3-May-09 23:30 
AnswerRe: binary search tree error compliation error Pin
I am BATMAN4-May-09 5:43
I am BATMAN4-May-09 5:43 
Questionis there any decryption algorithm that uses a dictionary to decrypt an encrypted file? Pin
Ha lee3-May-09 14:47
Ha lee3-May-09 14:47 
AnswerRe: is there any decryption algorithm that uses a dictionary to decrypt an encrypted file? Pin
I am BATMAN4-May-09 5:47
I am BATMAN4-May-09 5:47 
AnswerRe: is there any decryption algorithm that uses a dictionary to decrypt an encrypted file? Pin
Ha lee4-May-09 10:39
Ha lee4-May-09 10:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.