| Thread | Last Post | Replies |
|
| Using Shutdown Hook | 25 Nov 2007 13:38 GMT | 1 |
Thanks to all of you who responded to my thread on replacing runFinalizersOnExit. David Roden suggested using a Shutdown Hook. Never having used one before I put together a simple test program, (below), which seems to
|
| JNI & 64-bit windows = slow? | 25 Nov 2007 10:10 GMT | 3 |
Help... I don't know why JDK would introduce such an overhead: I've a Win 64-bit C++ routine that uses dynamic cast/RTTI heavily. I'm aware of the fact that pure C++ code that uses RTTI/dynamic cast runs slower in native 64-bit Windows than WOW. But when I put the same
|
| Java image/picture/bitmap? | 25 Nov 2007 06:39 GMT | 3 |
A question from an absolute Java newbie: I have to translate some Delphi code into Java. It is a class that performs simple image processing. Image data is sent to the class via Delphi's TImage object. After processing, the image is available as
|
| Can Java access more than 2GB of memory on WIndows 32 | 25 Nov 2007 03:37 GMT | 12 |
I am getting an out of memeory exception error running a java program on Windows 32 bit. Memory on the box is 4GB (I know 32 bit can access up to 4GB but Windows OS reserves 2GB for its own processes. I can increase memory
|
| Suggest me AJAX Books for Beginner | 25 Nov 2007 03:01 GMT | 2 |
I am going to do small project using JSP,Servlets and AJAX. I don't have any idea in AJAX.I have to learn AJAX and do project. Plz suggest me any books for AJAX. If you any have web links, ebooks, tutorials for AJAX .Send it to
|
| Replacement for runFinalizersOnExit() | 24 Nov 2007 20:42 GMT | 11 |
I am writing a security related application and I want to make sure that some critical data is wiped after it is finished with. I have provided a public dispose() method to do the wiping, and a finalize() to call dispose in case the user forgets to call it. However,
|
| Creating a Sandbox | 24 Nov 2007 19:42 GMT | 1 |
Hi, everyone. I'm trying to create a sandbox that executes code loaded from a JAR file with reduced privileges. Unfortunately I'm a bit stuck. Here is what I tried so far.
|
| Programming Questions to practice JAVA | 24 Nov 2007 19:06 GMT | 2 |
I am doing self-study on JAVA. Can I have some links, to practice JAVA provgramming. I am more interested in programming questions to practice. Thanks for your help.
|
| java app for flash | 24 Nov 2007 18:33 GMT | 1 |
can anyone jst tell me how to develop the java application for flash
|
| JTextField setText() does nothing | 24 Nov 2007 17:29 GMT | 1 |
I have problem with setting the JTextField text. here you see some of my code: if (in1.getText().length() > 10){ JOptionPane.showMessageDialog(null, "Error", "Error",
|
| API Reflection Interface | 24 Nov 2007 12:07 GMT | 2 |
i would to specify interface constants with xml or property file i think for that using api reflection but i don't see how to use interface with api reflection ? someone has idea ?
|
| Updating the list of the system's serial ports | 24 Nov 2007 04:52 GMT | 3 |
I use javax.comm.CommPortIdentifier.getPortIdentifiers() to get a list of the system's serial ports. This works fine, but the list is only updated upon loading of the class CommPortIdentifier (through static code). However, the Java application needs to detect a USB-to-serial ...
|
| Newbie Question: Creating a dynamic object... | 24 Nov 2007 01:15 GMT | 8 |
Is it possible for Java to generate names within a program and create an object from that new name? For example, let's say we are given a set of data to work from and I have a class named NodeInfo which has information pertaining to this set of data. The number of nodes that
|
| Almost Useful: Java Type Intersection | 23 Nov 2007 22:24 GMT | 2 |
I've written a new blog post about the almost-useful feature of Type Intersection. I'd like to get some feedback on it, thanks. <http://virtualinfinity.net/wordpress/java/esoteric-java-features/2007/11/23/type -intersection/> All feedback welcome, constructive criticism appreciated ...
|
| Protected methods in Object class | 23 Nov 2007 19:38 GMT | 16 |
So I am a Java newbie and have a simple question here: protected methods of a superclass are inheritable by the subclass. So how come the protected methods of Object class namely clone and finalize not inherited by every class by default ie why is overriding
|