| Thread | Last Post | Replies |
|
| System clock monitoring | 24 Sep 2005 20:02 GMT | 7 |
we have a java applet game that relies on a thread that ticks at 10n miliseconds. Our problem is that we use the system clock time to see the interval of ticks, and if a user manipulates the clock setting, then we get erronous tick times.
|
| Regarding Network Card Details | 24 Sep 2005 17:23 GMT | 1 |
I am facing a problem. I want to fetch network Adapter/Interface/Card details like name of the device the MAC address. Apart from this I want to disable/enable the state of the Network Adapater everything programatically thro' JAVA. If not possible then how to do this part.
|
| buffer implementation using semaphores | 24 Sep 2005 13:39 GMT | 12 |
I have a Semaphore and Buffer class, but I am not sure if I have implemented it correctly, it is posted here now, I was just after tips and suggestions..or pointing out erros which are not obvious(to me). /*
|
| char array to numeric data types - fastest conversion | 24 Sep 2005 04:14 GMT | 3 |
I know i can convert the char array to a string then to the appropiate numeric data types (float, double etc) however I'm doing this millions of times and throughput is critical. Any ideas if there is SDK function or some example code out there that removes the middle step of ...
|
| How to open dialup connection in Java? | 24 Sep 2005 01:34 GMT | 1 |
Who know, how to open dialup connection from Java? (I found only one way - to run another program (*.bat file), but it's not good idea). Any another suggestions? Haim.
|
| JMenuBar and JPanel | 24 Sep 2005 01:24 GMT | 1 |
It seems JMenuBar can be added only to JInternalFrame and thus appearing only at the North of the frame.. There is also some sample program on the sun site showing how you can add on the west side.
|
| casting object[] to string[]?? | 24 Sep 2005 01:16 GMT | 14 |
I am trying to cast an array of objects to an array of strings. Basically like this: String [] hosts ; hosts = new String [3] ;
|
| loop? | 24 Sep 2005 00:27 GMT | 16 |
why java doesn't support this kinf od loop? for (long x=0,int y=0;x<1;x++){ } thanks
|
| Atomic operation and volatile variables | 23 Sep 2005 23:42 GMT | 8 |
I have one volatile variable declared as private volatile long _volatileKey=0; This variable is being incremented(++_volatileKey) by a method which is not synchronized. Could there be a problem if more than one thread tries
|
| libTLSServiceError.so error | 23 Sep 2005 23:06 GMT | 1 |
I am getting ld.so.1: /export/opt/j2se/1.4.1_02/bin/java: fatal: libTLSServiceError.so: open failed: No such file or directory I have searched on the root for this file and found nothing in the box .
|
| Ant classpath modification for mail task | 23 Sep 2005 22:37 GMT | 8 |
how can i use the "mail" task in my Ant script without modifying my system CLASSPATH? I would like to change the classpath in the build.xml file, but i don't manage to make the mail task to use the new classpath. Does anyone know how to do this?
|
| having trouble using signed java applet | 23 Sep 2005 21:59 GMT | 64 |
Hi i wrote an applet recently and posted a request here for help in allowing it to open a socket. I got some excellent info on creating self signed jar files that allow me access to functions normally prohibited to java applets. Now i've follwoed the instructions but now my heml ...
|
| Convert or create PNG images in palette mode in Java | 23 Sep 2005 21:56 GMT | 10 |
AoA .. does any one know how to create PNG images in Palette mode in java?? PNGQUANT is a software wriiten in C which does the conversion. But i need java code for that..
|
| Java WebService Serverseite ohne WebServer | 23 Sep 2005 21:31 GMT | 2 |
Hi... ich habe die Aufgabe bekommen einen universellen WEbServicendpunkt zu schreiben, der als TestEndpunkt für alle möglichen Webservice Clients dienen soll.. Die voraussetztung ist dabei ist aber, dass der
|
| Connecting a windows network share from Java with a specificied username and password | 23 Sep 2005 21:22 GMT | 5 |
I want to connect a file on a Windows box that I can asscess with \\IP_ADDRESS\autoload\journals.txt from a Java application running on another windows box. I used the File object when I was developing. Everything worked fine.
|