Tagged Questions
The java1.5 tag has no wiki summary.
15
votes
2answers
569 views
java.lang.InternalError: name is too long to represent
I get this error:
java.lang.InternalError: name is too long to represent
at java.lang.ClassLoader.defineClass1(Native Method)
at ...
7
votes
3answers
422 views
Java: easiest way to package both Java 1.5 and 1.6 code
I want to package a piece of code that absolutely must run on Java 1.5. There's one part of the code where the program can be "enhanced" if the VM is an 1.6 VM.
Basically it's this method:
private ...
4
votes
8answers
273 views
Detecting non-1.5 Java code while developing on a mac under 1.6
I use a mac (and therefore java 1.6) to develop a cross-platform application that is released in Java 1.5. I've discovered that Eclipse can enforce 1.5 compliance, and that has saved me from ...
4
votes
4answers
3k views
Java method works in 1.5 but not 1.6
I have an application which has been running happily under Java 1.5 for around a year. We've just had the boxes updated and had Java 1.6 installed.
After deploying the app to the new server we've ...
3
votes
2answers
130 views
How to Debug while Porting from Java 1.5 to 1.6?
I have a distributed JBoss-based application that shows a buggy behavior when compiled and run with Java 1.6. It shows an another bug when compiled with Java 1.5 and run with Java 1.6. But it works ...
2
votes
5answers
260 views
Eclipse pausing without a breakpoint
While debugging my project in Eclipse, it will (repeatably, at the same point in the code) pause execution as if it's reached a breakpoint. No exceptions are thrown, the project has no breakpoints, ...
2
votes
1answer
431 views
How to find out the drag source component in the drop target TransferHandler?
Question is regarding Java 5 and Drag n Drop.
Is there a way to determine the drag source component in the drop target TransferHandler?
I need to know this in my canImport(..) or importData(..) ...
1
vote
1answer
47 views
Java - Enumerable.Cast() like C#?
Is there an equivalent in Java 1.5 to Enumerable.Cast() from C#? I want to assign an ArrayList<MyType> to a variable declared as List<Object>. Eclipse grumbles "Type mismatch: cannot ...
1
vote
0answers
141 views
Where to download JRockit for Java 1.5
I checked on download page http://www.oracle.com/technetwork/middleware/jrockit/downloads/index.html but only versions for java 6 are available.
1
vote
2answers
91 views
Replace xmlns attribute of root node using xslt
I have xml like below
<rnp xmsns="v1">
<ele1 line="1">
<ele2></ele2>
</ele1>
</rnp>
I want to change it to
<rnp xmsns="v2">
<ele1 ...
1
vote
2answers
64 views
Log4j category weirdness
I've been having a frustrating time trying to sort out the logging in my project. In particular, one of the 3rd party libraries we use had one class, com.foo.bar.baz.java, that ignored any ...
0
votes
1answer
45 views
Java - passing class with annotation to generic method
I'm working with JPA 2 and have the following method:
private static void wipeTable(EntityManager em, Class<? extends Table> klass) {
String tableName = ...
0
votes
1answer
196 views
tomcat eclipse mssql driver demanding Java 1.6
I started writing my servlet in Java 1.6 for tomcat 7, but then I later needed to roll back to Java 1.5 for tomcat 6. I'm using eclipse. For some reason though, when I try to run my servlet it gives ...
0
votes
1answer
60 views
Creating an instance from a Java Type
I was wondering if its possible to create an instance from a Java Type and populate a parameterised list?
I've got a Type UserDefinedType with a member variable List<AnotherUserDefinedType> ...
0
votes
5answers
353 views
Gregorian Calendar
I faced a weird problem with day light savings. I have a java program scheduled to run on every day on 00:05 AM time, but yesterday it ran on 23:05. I am using Gregorian calendar to schedule this ...
0
votes
2answers
245 views
Illegal access exception when trying to access attibrute from parent class by introspection
I am currently playing with introspection and annotations in Java 1.5.
The have a parent abstract class AbstractClass.
The inherited classes can have attributes (of type ChildClass) annotated with a ...
0
votes
5answers
1k views
Why won't Eclipse compile my code in java 1.5?
I have installed Eclipse 3.5.2 and the JDK for Java 6.
Here's my installed JREs in Eclipse
I am trying to compile with an ant build file, part of which looks like this and specifies java 1.5:
...
0
votes
4answers
3k views