| Thread | Last Post | Replies |
|
| JVM and Java for Windows XP 64 Itanium | 27 Aug 2003 21:50 GMT | 2 |
What JVMs are available for Windows XP 64 on Itanium. We're working with some hoemgrown engineering design apps that previously ran on v1.3.1. Also. How do I check the version of the JVM? I know that on Windows
|
| Overflowing intern | 23 Aug 2003 02:29 GMT | 2 |
I seem to vaguely recall some JVMs have a limit on how many strings you can intern. I wondered 1. what that limit was. 2. what those JVMs were.
|
| Risk of static singleton classes being unloaded by the ClassLoader? | 23 Aug 2003 00:38 GMT | 2 |
When implementing a Singleton pattern, I sometimes consider whether to use the classic "getInstance()" concept, or simply implement a "static utility" class, with all static methods. In most cases, the static utility class fulfills all of my needs.
|
| toolbar | 13 Aug 2003 14:03 GMT | 1 |
How can I set a toolbar vertical of horizontal? I know I can use "toolbar = new JToolBar(JToolBar.HORIZONTAL);", but how can I set the toolbar vertical without making a new JToolBar. Thanks in advance,
|
| Creating a mutex | 12 Aug 2003 22:33 GMT | 3 |
Does anyone know how I can create a mutex to control access to a shared resource on one computer? Regards, Q. Noble
|
| How to get 2 different ClassLoader in one JVM? | 11 Aug 2003 19:23 GMT | 1 |
I call ClassLoader.getClassLoader() and Thread.currentThread.getContextClassLoader() but i always get the same ClassLoader instance. I want to load my interfaces and abstract classes by one ClassLoader
|
| volatile instead of read-write lock | 07 Aug 2003 20:40 GMT | 7 |
I have a central cache that is heavily accessed. So far, I'm using a hashmap protected by a read-write lock. With many threads, I seem to see contention even on this lock (maybe due to Linux scheduling). Since the cache is not too big, and rarely modified, I've changed the code
|
| instanceof | 04 Aug 2003 15:57 GMT | 9 |
I wondered how various jvms implement instanceof. It is needed to catch exceptions, arraystores and do casts as well as explitcitly. I wondered what tricks they had to deal with deeply nested classes.
|
| dedicating a processor to bytecode execution | 04 Aug 2003 09:35 GMT | 3 |
I was reading this article... http://www.usenix.org/publications/library/proceedings/coots97/full_papers/mulle r/muller_html/node2.html and I am interested in the section on "How to Improve Java Execution" : "Java Processors", although I don't necessarily understand it yet. Is it
|
| how to read value of environment variable | 04 Aug 2003 09:23 GMT | 1 |
I would like to read system environment variables like path etc from inside a java program without using the java -D option. Is it possible ? TIA
|
| JVM Monitor | 02 Aug 2003 10:08 GMT | 2 |
I need a tool that can show the number of instances of a spesific object, Config() for example? Is anybody have got info. about that kind of a tool. Best Regards
|
| sun.reflect.ClassFileAssembler | 02 Aug 2003 09:33 GMT | 2 |
Hi, just wondering if anyone did some nice code which uses the sun.reflect.ClassFileAssembler and sun.reflect.AccessGenerator
|