| Thread | Last Post | Replies |
|
| strange exception | 23 Jun 2005 08:20 GMT | 5 |
I am trying to run an application and the error that I get is as follows: Exception in thread "main" java.lang.UnsupportedClassVersionError: javax/xml/transform/TransformerException (Unsupported major.minor
|
| byte[] format | 23 Jun 2005 08:04 GMT | 3 |
I have the code : byte[] messageCrypte = encryptCipher.doFinal(messageACrypter); String ms = new String(messageCrypte); byte[] bt = ms.getBytes();
|
| Why Generics? | 23 Jun 2005 06:18 GMT | 182 |
In Java5, the powers that be added generics. Can someone please explain to me what value they add to Java? I think they are one of the biggest (of many big) mistakes in C++. And I always felt that they only reason they were in C++ was because it made the huge mistake
|
| What datastructure to use to store nodes/locations I've visited | 23 Jun 2005 03:28 GMT | 3 |
Hi all, I'm doing something similar to a graph traversal. And in this instance this graph type structure could have cycles. I want to ensure I don't revisit old nodes and was wondering if anyone could think of an efficient way to store nodes/locations/names that have already been
|
| Serialization of Arrays of Objects | 22 Jun 2005 23:09 GMT | 3 |
Hi guys. Hopefully this isn't a stupid typo error question, but... I have my own object // examp.java class Security implements Serializable { String a, b; int a; }
|
| accessing dlls using a jni in tomcat | 22 Jun 2005 22:01 GMT | 2 |
I have some dlls and a corresponding set of jni classes which are part of my jar which I want to run as a web server in tomcat. I think that the jar is in the right place (webapps\myapp\WEB-INF\lib) but I'm not sure where I need to put the dlls. Up to now, while developing/testing
|
| multiple inheritance and java generics flaw? | 22 Jun 2005 20:34 GMT | 1 |
disclaimer: i already know about type erasure, so i understand the logical flaw present here. what i'm most interested in is knowing: a) why i don't get a compiler error (i think i should, but i don't, not even a warning with all flags turned on).
|
| Copy a Hashtable into object? | 22 Jun 2005 18:16 GMT | 2 |
How can I copy a Hashtable into an object? class gc { Hashtable local_copy; public void gc() {
|
| Tomcat 5.0 - setting System properties for an application | 22 Jun 2005 17:44 GMT | 3 |
I have been all over the place looking for a solution to my problem and have so far come up empty handed. I am running Apache Tomcat/5.0.28 on Windows and I have deployed an application to it.
|
| Java debugger | 22 Jun 2005 17:39 GMT | 9 |
I am looking for a java debugger to debug regular java class file. I have existing java files. I use emacs to edit them. I use jbuilder as a debugger when I need it. I do not like jbuilder: like other IDEs, it is too smart. It checks and manages many things which I do not need. Is
|
| Java Beans | 22 Jun 2005 17:36 GMT | 1 |
how can I pass on a parameter to Java Bean constructor when I use it in a jsp page using "jsp:usebean" thanks
|
| Weird template problem | 22 Jun 2005 17:17 GMT | 9 |
say I have this method: void <T> foo (T arg) { arg.bar(); }
|
| awt default toolkit | 22 Jun 2005 16:03 GMT | 1 |
The following will not show the image nor will it throw any exceptions. Not throwing exceptions doesn't surprise me because the documentation show that it won't. That is a little surprising in itself. I am not using Swing components.
|
| JNI and Global references | 22 Jun 2005 15:45 GMT | 1 |
Does anybody know when using JNI how can you get the limit number of global references in a process. Is there a way to control it. Thanks
|
| java mail authentication via MS Exchange 2003 | 22 Jun 2005 13:58 GMT | 7 |
can anyone post a code for sending mail using Exchange 2003 and javamial (1.3.2). I am getting authentication error but I know the user and passoword are correct (i can base64 them and log via telnet ). Is it just constructing correctly the user name or need to configure the
|