Forum: Java Jul 17th, 2009 |
| Replies: 2 Views: 285 Merhaba | Hello,
if you sent what the socket error actually was, it would be clear to identify the error.
But it might originate from java security policy. Please control your java security... |
Forum: Java Jul 15th, 2009 |
| Replies: 11 Views: 447 Hi,
Actually your question doesn't make sense. As i can understand, NumberFormatException should be caugth and not printed any message to terminal however you also want to know about wrong... |
Forum: *nix Software Jul 4th, 2009 |
| Replies: 2 Views: 2,228 Hello,
Actually i do not know what stage you are but nagios is the right choice for monitoring. Especially you do not want to pay thousands of dollars to other softwares. And you can do whatever... |
Forum: Java Jul 4th, 2009 |
| Replies: 1 Views: 522 Hi,
I found your mistake! After client sent the file name you first read it. And second time you try to read file name from client but client already wrote it. So server waits client to write the... |
Forum: Java Sep 9th, 2007 |
| Replies: 4 Views: 838 numbers between 1-9 always are <=9. so you must specify an interval inside if-if else clause
like :
if(dept>7 && dept<=9)
System.out.println("You belong to: Mr.Z");
}else if (dept>3 && dept<=7){... |
Forum: Java Nov 21st, 2006 |
| Replies: 16 Views: 26,685 ı couldn't understand why you wanna get image byte size. as a result
images are also files. so you can trnsfer you images as a byte streams.
just read image file with an inputstream and write it to... |
Forum: Java Oct 17th, 2006 |
| Replies: 0 Views: 922 hi, folks!
ı'm last year student at university. so ı must do a thesis. ı'm a bit confused about what ı should decide to. actually ı think to search about distributed systems which are based... |
Forum: Java Sep 30th, 2006 |
| Replies: 10 Views: 5,305 as you know applets are executed on client machines(loaded and run by browsers). Although
local codes are trusted to have full access system resources(like local file
system,sockets,etc.) applets... |
Forum: Java Aug 4th, 2006 |
| Replies: 10 Views: 5,305 ı look at your applet code and noticed you added main(). in Applets no need a main method. applets start with method init(). same Threads start with run() method.
ı wrote a sample applet code. ı... |