Tagged Questions

7
votes
3answers
436 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 ...
6
votes
1answer
171 views

What does Java compile an enumeration down to?

A coworker and I had a discussion about how Java represents enumerations. I was under the impression they were strictly ints like C/C++. Or, if you add behavior (Type-Safe enum), it gets wrapped in a ...
4
votes
8answers
280 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
1answer
678 views

Managed Mbeans from ManagementFactory in JDK1.6 - NotCompliantMBeanException:

I was using ManagementFactory to get ManagedMbeans in JDK1.5 and JBOSS 4.X. Now wanted to move my same code to JDK 1.6. The Mbean part breaks throwing the exception Caused by: ...
3
votes
3answers
618 views

System.exit(1) exists with return code 0

I have a call to System.exit(1) in my multi-threaded program. However from time to time instead of return code 1, the program exits with return code 0. I don't have any other calls System.exit() and ...
3
votes
3answers
350 views

Is it possible to read the value of a annotation in java?

this is my code: @Column(columnName="firstname") private String firstName; @Column(columnName="lastname") private String lastName; public String getFirstName() { return firstName; } ...
3
votes
7answers
4k views

Java - How to find count of items in a list in another list

Say I have two lists: List<String>products = new ArrayList<String>(); products.add("computer"); products.add("phone"); products.add("mouse"); products.add("keyboard"); ...
3
votes
2answers
134 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
3answers
3k views

Setting Java 1.6 as the default on Mac OS X 10.5.8

How can I set Java 1.6 to be the default for my MacBook Pro Intel Core 2 Duo with OS X 10.5.8? I have installed the latest software update, and dragged the Java SE 6 64-bit choice to the top in the ...
1
vote
2answers
90 views

Read byte values, ASCII and UTF-16 chars from file

I'm trying to read ID3v2.3.0 tags from mp3 files, and the values are of mixed type. For example, the file will start with 3 chars "ID3" followed by two version bytes of values 3 and 0, and the ...
1
vote
2answers
162 views

TrueZip creates virtual directory instead of archive

I'm having an issue with the following code: TFile src = new TFile(this.getMellomStasjon()); TFile dst = new TFile(this.getZipFolder()+""+zipFile+".zip"); if(dst.isDirectory()) ...
1
vote
11answers
163 views

How to prevent an Object being cast to a String automatically

I have a class that looks like the following: public class FileEntry { private String name; public FileEntry (String name) { this.name = name; } } void foo(String arg){}; ...
1
vote
2answers
658 views

Loading generic service implementations via java.util.ServiceLoader

I've stumbled upon some inconvenience the other day using java.util.ServiceLoader and some questions formed in me. Suppose I have a generic service: public interface Service<T> { ... } I ...
1
vote
2answers
181 views

Using a JDBC Type 3 driver with Java 1.6

I've read in several places that if you are using Java 1.6 then you should use type 4 JDBC drivers. Does that mean that you should not use type 3 drivers?
0
votes
1answer
78 views

Java function is updating its input variable

I'm doing a lab at the moment working on fitness functions. The problem is I'm making a SmallChange() function that does what it says, annoyingly it seems to update the variable you give it, when it ...
0
votes
1answer
67 views

Eclipse chokes on enum, even though Compiler compliance level is 1.6

I have set my Eclipse project's Compiler compliance level to 1.6 But I get errors like in the screenshot below: Syntax error, annotations are only available if source level is 1.5. I have ...
0
votes
0answers
57 views

How to get Java 1.6 to show in the OS X Java preferences app in 10.5

To get Java 1.6 on OS X I installed Apple's JavaForMacOSX10.5Update10 and javadeveloper_for_mac_os_x_10.5__9m3425 on OS X 10.5.8, on my 64-bit capable Intel-based Mac (required for 1.6). However, ...
0
votes
2answers
116 views

Problem in creating and publishing Web Service in Mustang(Java 1.6 sdk)

I am preety new to Java and have some experience in dotnet. The intension is to create a web service in java (jdk 1.6) and consume it thru dotnet. Please assume me as a beginner in Java. I got stuck ...
0
votes
7answers
127 views

String Replace problem

What I have: I've got a text "Hi {0}, my name is {1}." I've got a List<String> names = Arrays.asList("Peter", "Josh"); I'm trying to fit Peter where there's a {0} and Josh where there's a ...
0
votes
0answers
124 views

java Versioning Problem

Dear all,I am using a Java Rmi application which was developed in java 1.4 version, now i changed my version to java 1.6 but my Rmi application doesn't run properly it having some problem in ...
0
votes
4answers
3k views

Is is possible to build java code using JDK 1.6 to run on JRE 1.5?

PS: I am new to Java.
-8
votes
2answers
262 views

How to use Queue in Java 1.6 in LIFO [closed]

How to use queue in Java 1.6 as LIFO? PLease Provide Example Code. Thanks