| Thread | Last Post | Replies |
|
| how to unload loaded classes | 15 Jun 2005 09:10 GMT | 4 |
I have my classes loaded with my own ClassLoader. Now I want to load my simulated classes ( same package and name). First I have to unload the previous classes. Shall I use: System.gc();System.gc();
|
| JNI and | 15 Jun 2005 08:51 GMT | 3 |
I am using java from C++ using JNI calls the JVM created when the C++ application is started and destroyed just before it stop running While my C++ app is running I am creating new class in java
|
| Saving image ..?? | 15 Jun 2005 06:19 GMT | 1 |
Hai all, I want to draw text and graphics and save all these in a jpg or bmp image?? Do you have any idea??? I've read a tuotorial that uses the package javax.media... but it makes
|
| grab a picture from webcam JFM | 15 Jun 2005 06:12 GMT | 5 |
I was trying the code at http://www.uk-dave.com/bytes/java/jmf-framegrab.shtml. At the beginning i had an error at the line 24 with the device error. I figured out this error. But now i have an exception in the thread
|
| AccessControlException | 15 Jun 2005 05:06 GMT | 11 |
I have been blithely reading files via URL from an Applet. They worked fine locally, but with Java 1.5 I'm getting AccessControlExceptions. I should have been getting these all along. Any comments on this?
|
| Static and final variables | 15 Jun 2005 02:57 GMT | 2 |
I have this situation. I have several jar files and each jar file has a separate version. util.jar Version.java
|
| overwriting arrays | 15 Jun 2005 01:32 GMT | 7 |
When I attempt to overwrite or copy one array to another, using something like : array1 = array2; then the two arrays seem to become 'linked' or associated with eachother, so
|
| finally block does not complete normally - Eclipse | 15 Jun 2005 00:22 GMT | 56 |
I've started working on a new project using Eclipse. When I do a build I get multiple warnings stating "finally block does not complete normally". A sample method follows:
|
| Some strange problem with Tomcat 5.5 + JDK1.5 | 14 Jun 2005 21:11 GMT | 2 |
Hi All, my name is Alex. I'am experiencing the following problem: in our web application we're using xercesImpl.jar library to support XML serialization and it worked fine for earlier versions of Tomcat server - simply because Tomcat 4.x
|
| Novice Question: Java applet(?) for a JPEG Image | 14 Jun 2005 20:31 GMT | 2 |
Please go to http://www.flickr.com/photos/nicolasmalik/18438043/in/pool-guesswhere/ and run your mouse over the picture. Did you see how a highlighting box with text appears?
|
| java socket i/o with callback/non-blocking | 14 Jun 2005 19:49 GMT | 7 |
I have the O'Reilly Book Java NIO (with the mouse on it) and I'm trying to figure out how to do non-blocking socket i/o. Basically I want to have some subroutine to be called whenever there is data available to read on a socket object without having to poll it. I'm having trouble
|
| 3-Tier architecure? | 14 Jun 2005 18:49 GMT | 3 |
As I understand a 3-Tier architecure contains: 1) Presentation layer (JSP sites) 2) Process management layer (where logic on userinput is made) 3) Database management layer
|
| J2ME, Bluetooth JSR-82, | 14 Jun 2005 17:46 GMT | 1 |
Hi, All, I am developing a j2me program for xxxxi(SE new phone) to do Bluetooth communication, I had done a version for P910i, it work very well. When I install the same .jar on xxxxi it seems that the Bluetooth
|
| Tomcat 5.5.9 auto deploy issue | 14 Jun 2005 17:37 GMT | 1 |
I've been working with Tomcat 5.0.28 for a bit and it's worked great. I've moved to Tomcat 5.5.9 and can't seem to get the container to auto deploy my war file when I deploy it. In 5.0.28, I'd run my ant script which would copy my war file to
|
| If a superclass is static and its subclass isn't, will the subclass be static? | 14 Jun 2005 15:54 GMT | 6 |
If a superclass is static and its subclass isn't, will the subclass be static? public static class A { }
|