Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
423 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
165 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
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
92 views

What is the difference between the Java 1.6 and 1.7 jarsigner

Just noted that you can“t sign Android APKs with the Java 1.7 jarsigner. So I wonder why this is and what is the difference between the 1.6 and 1.7 signer?
3
votes
1answer
617 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
584 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
309 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
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
3answers
2k 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
63 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
11answers
161 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
606 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
1answer
376 views

Apt task with Java 1.6?

I have some automatically generated Ant build scripts that I need to use to build an application. I am using Ant 1.8.1 and Java 1.6. The scripts use the Apt Ant task, which according to the task ...
1
vote
2answers
173 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?
1
vote
2answers
1k views

cannot connect subclipse to VisualSVN on Windows 7

svn: connection refused by the server svn: OPTIONS request failed on '/svn/myrepo/MyProject/trunk' svn: connection refused by the server Java 32 bit 1.6.20 Windows 7 64 bit Eclipse 3.5.2 32 bit ...
0
votes
1answer
57 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
2answers
31 views

Is it possible to determine a method's callback if its type is void and its “return;” had skipped its execution?

I have a method which works like this: public void deploy(UserInput userInput) { if (userInput is wrong) return; //start deployment process } The userInput consist of individual ...
0
votes
1answer
68 views

XSD SchemaFactory error - Java 6

In the code below, I am trying to validate a XML. Everything works find when i run it from eclipse. When i deploy it on weblogic the code fails with error: "SAX Exception while processingsrc-resolve: ...
0
votes
1answer
28 views

CORBA exception when running from a Mac OS X 10.6 64 bit macbook

I get a weird exception while using CORBA ACE/TAO. I am trying to run a service written in Java that sends/receives messages from clients. When I run the same code in Windows 7 32-bit it works fine! ...
0
votes
1answer
124 views

How to refresh JTable Model without overwriting the old model in the view?

I'm developing a Desktop Application in java(jdk 1.6) with swing but having a problem after refreshing the view. Whenever I update the Model of a JTable, I see that the data in this model changes but ...
0
votes
0answers
51 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
136 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()) ...
0
votes
2answers
101 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
126 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
123 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
2answers
520 views

How do I resolve no swt-cocoa-3557 or swt-cocoa in swt.library.path, java.library.path or the jar file error?

I can't get a swt application to work on Mac OSX Snow Leopard. Exception in thread "main" java.lang.UnsatisfiedLinkError: no swt-cocoa-3557 or swt-cocoa in swt.library.path, java.library.path or the ...
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.
0
votes
1answer
751 views

What does Java Error “Your active platform is: JDK_1.6, but the corresponding property ”platforms.JDK_1.6.home“ is not found in the project's properties files” mean?

I'm a Java noob (but have been programming for 25+ years, and have worked with OO languages from day 1). All of a sudden I started getting this error: Your active platform is: JDK_1.6, but the ...
-8
votes
2answers
194 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