Forum: Java Jun 13th, 2009 |
| Replies: 3 Views: 272 tnx it was exactly what i was locking for...
im marking as solved... |
Forum: Java Jun 13th, 2009 |
| Replies: 3 Views: 513 Well, I don’t see the ChatHandler class , but it should have a run method , in the run method (assuming you work with sockets) you shall ask for username, password exec,and use InputStreamReader and... |
Forum: Java Jun 13th, 2009 |
| Replies: 3 Views: 272 Hi,
I have java code, in the code there is about 5 lines that I wont to open in new Thread, I don't wont to crate all new class for 5 lines , can I can I implement the Thread inside the method... |
Forum: Java Jun 9th, 2009 |
| Replies: 1 Views: 675 After long worm hours (the air conditioner is broken) I found the problem the sender and the reviser was using different type of streams I fixed it .. .and the code is attached
enjoy
sender
... |
Forum: Java Jun 9th, 2009 |
| Replies: 1 Views: 675 hi,
im working on java on some client server project...
in the project the client and the server can send files, but im failng to do so, the resiver get only part of the file...
here is my code... |
Forum: Java May 27th, 2009 |
| Replies: 1 Views: 401 Hi
I am using jmf to build some music player and im want to add some equalizer that will "jump" up and down according to the music, how can I do it? |
Forum: Java Mar 26th, 2009 |
| Replies: 9 Views: 510 This is my code:
public boolean SetYear (String year)
{
if (year.matches("[0-9]{4}"))
{
_year=year;
return true;
}
return false;
} |