Tagged Questions

Java SE version 6 was released in December 2006, and given the long length of time until Java SE 7 was released (July 2011) it will likely be the dominant version of Java for a long time.

learn more… | top users | synonyms (3)

33
votes
11answers
2k views

Reasons and advantages for upgrading to Java 6 for a non-technical decider (at the client)

I'd like to upgrade from Java 5 to Java 6. We all know about the technical advantages and benefits, but: I have the problem that a major client refuses to upgrade from java 5 to java 6 because of ...
6
votes
2answers
332 views

What is “Java 6 steady state”

I know nothing about Java. There is Java 6 steady state at benchmark http://shootout.alioth.debian.org/u64q/which-programming-languages-are-fastest.php which Java 6 steady state is the fastest ...
6
votes
9answers
2k views

How can you disable all sorting code in JTable in 1.6

I have a JTable extension that has been in use since Java 1.3/1.4 in the project that provided things like column reordering and sorting by clicking on the column. We are upgrading to Java 1.6, and ...
6
votes
5answers
7k views

How can I prevent PermGen space errors in Netbeans?

Every 15-30 minutes Netbeans shows a "java.lang.OutOfMemoryError: PermGen space". From what I learned from Google this seems to be related to classloader leaks or memory leaks in general. ...
6
votes
8answers
6k views

Installing Java 6 on Mac OS

Is it possible to install the latest JDK on Mac OS 10.5? What are the best options, considering that the Apple-supplied version is 1.5? Update: I am trying to install JDeveloper 11, which requires ...
5
votes
1answer
135 views

Set custom cursor when dragging external file into Swing app

I have a swing application into which I would like to import an external file by dragging the external file from windows explorer onto the application. I have this basic functionality working. ...
5
votes
1answer
281 views

Forward compatible Java 6 annotation processor and SupportedSourceVersion

I am trying out Java 7 for one project and getting warnings from annotation processors (Bindgen and Hibernate JPA modelgen) of this sort: warning: Supported source version 'RELEASE_6' from annotation ...
5
votes
3answers
127 views

Is there a way to tell if a class was compiled for java6?

How can I do to tell if a java class was compiled for use on a java 6 vm? Is there an easy way?
4
votes
5answers
580 views

Old projects compatible with Java 7

My old projects use Java 6 (1.6), and I don't know when I update (Java 7), they can run fine ?
4
votes
3answers
493 views

Problem parsing unicode escape in a Java 6 String literal…?

Why does this compile in java 6 (Sun 1.6.0_16): System.out.println("\u000B"); ... but not this: System.out.println("\u000A"); On this program: public class Test { public static void ...
3
votes
2answers
235 views

Compiling Java 7 to Java 6

I'm aware that the runtime features of Java 7 are not available with Java 6 but since no new byte code has been added the new byte code invokedynamic is only relevant for non-Java languages, I was ...
3
votes
2answers
702 views

Spring3, JAXB2, Java6, NamespacePrefixMapper questions

I built a simple Spring3, Hibernate3/(JPA2), RESTful service, hosted on Tomcat6, that uses JAXB2 to marshal the results. (It uses annotated pojos.) I needed to use specific namespace prefixes, so I ...
3
votes
5answers
361 views

Does Apple support Java 6 yet?

A while back I released an application in Java. While I targetted it for Java 6, I realized that there was a significant Macintosh user base. At the time, Apple had not gotten around to creating a JRE ...
3
votes
2answers
1k views

tutorial about xml handling in java 6

i am getting little bit lost with all the XML handling methods in java, xpath, sax, DOM, DocumentBuilderFactory...different buzz words that i dont see how they relate... 1) so i am guessing my ...
3
votes
3answers
533 views

Is Java bytecode compatible within different updates of the same version of Java?

this question is related to the the other topic discussed here: http://stackoverflow.com/questions/1266940/is-java-bytecode-compatible-with-different-versions-of-java but in this case would like to ...
3
votes
3answers
852 views

Unicode version supported by Java 6

Anyone know the answer? According to http://java.sun.com/javase/technologies/core/basic/intl/faq.jsp, it's 4.0 for 5. Has it been upgraded in 6? Link to reference would be much appreciated as well. ...
3
votes
2answers
2k views

Java 6 and JaxB 2.1

The original release of Java 6 came with JAXB 2, but I have been told that 'later' Java 6 releases ship with JAXB 2.1. Does anyone know what the first version of Java 6 to ship with JAXB 2.1 was?
3
votes
6answers
617 views

Java: When is Java 6 ready for end-user desktop application?

I am writing a desktop application written in Swing developed using Java 1.5. Some of the users seem to be using Mac, but I am interested in Java 6's scripting feature (Java 6 ships with Rhino). Java ...
2
votes
4answers
27 views

Can I ignore BeanCreationException and inject null instead?

We have a situation where our Spring wires up some beans that include ActiveMQ classes built with Java 6. Our application runs on customer's servers, so we can't guarantee that they have Java 6 or ...
2
votes
2answers
48 views

What is the behavior of running threads started by java.util.Timer when Timer.cancel() is called?

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Timer.html The reason for this question is that I have a timer running at one-minute intervals which makes a network request that sometimes ...
2
votes
4answers
168 views

WatchService for Java 6

Java 7 introduced WatchService for monitoring file systems continuously. Is there a backport for Java 6 ? Are there pure Java libraries with similar features ?
2
votes
2answers
173 views

Explaining hashcode to Vector

Can I get an idea of how the hashcode takes the valueas per the element added to vector? Vector v = new Vector(); //Add elements to Vector v.add("1"); System.out.println(v.hashCode()); ...
2
votes
1answer
184 views

Java console from eclipse

I am trying to implement the Java 6 console api. If I am trying to run my java class as Java Application why is my console null? Or shall I be running my .java from command promt like ...
2
votes
0answers
609 views

Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (xsi:noNamespaceSchemaLocation is not allowed), works in 1.5

Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (with xsi:noNamespaceSchemaLocation is not allowed to appear in root element), works in 1.5 I'm finding the following ...
2
votes
1answer
6k views

Which OJDBC Driver for Java 6?

We're currently using ojdbc14.jar, should we be using ojdbc6.jar ? Update: Oracle 10g being used
2
votes
2answers
240 views

How to add debug information when compiling with Java's Compiler API

What do I need to do to control whether my classes compiled with a JavaCompiler will include debug information or not? I'm thinking it has something to do with the getTask()-method's options ...
2
votes
2answers
3k views

Simple Java HTTPS server

I need to setup a really lightweight HTTPS server for a Java application. It's a simulator that's being used in our development labs to simulate the HTTPS connections accepted by a piece of equipment ...
2
votes
3answers
743 views

Specify Output Path for Dynamic Compilation

My dynamic compilation in Java 6 is working perfectly. However, I would like to change the output path. I have tried tons of things (I'll spare you) to no avail. Anyway, here's the working code ...
1
vote
1answer
22 views

Custom Map<Object,Object> XmlAdapter

I'm trying to adapt a Map XmlAdapter to one that supports Map. The approach is based on this article: XmlAdapter - JAXB's Secret Weapon This line in the testing harness generates ...
1
vote
2answers
80 views

Hot deploy fails on JBoss - “Delete method not implemented”

When I'm changing some Java source code and my server is running, hot deploy fails, giving the following error message: "Delete method not implemented" How can I find out the root of this evil? ...
1
vote
3answers
118 views

Porting Arrays.copyOfRange from Java 6 to Java 5

I have some source code that I need to make runnable under Java 5. Unfortunetly that code uses Arrays.copyOfRange function which was only introduced in Java 6. What would be the most effective way to ...
1
vote
1answer
92 views

How to convert java.lang.Object to ArrayList?

I have a valid ArrayList object in form of java.lang.Object. i have to again convert Object to ArrayList. I tried this Object obj2 = from some source . . ; ArrayList al1 = new ArrayList(); ...
1
vote
1answer
54 views

Setting a system property for the jar command on Windows

Our application relies on using the jar command to extract files on remote systems. We've just noticed that in java 6 Sun changed the default behavior of the timestamps for files extracted with the ...
1
vote
7answers
244 views

Dynamic Function Creation in Java

So I'm trying to figure out if there is some method to dynamically create/assign a method to a class in Java. If it were C, I would just do it as follows using pointers: public class Foo { void ...
1
vote
7answers
105 views

Compile another java file from java file

Just out of curiosity. Can we compile & run a java file from another java program? If so, can you send a reference to that knowledge source?
1
vote
1answer
589 views

How can I suppress the creation of the hs_err_pid file?

We are running a java application under java 1.6.0_13. When it crashes it creates the normal hs_err_pid file. I don't want this file created even if the application crashes. Is there a way on the java ...
1
vote
1answer
111 views

Invoking EJB on 1.6 from client on 1.5

I have a Glassfish v3 server running a set of EJBs (under java 1.6 obviously). I have another machine on top of which I have a host java 1.5 - none J2EE - process (i can't change that). The question ...
1
vote
3answers
2k views

Rounding Half Up with Decimal Format in Android

I want to set the Rounding Mode to HALF_UP on my DecimalFormat, but eclipse is telling me that setRoundingMode() is not available on the DecimalFormat class. My project properties (and the overall ...
1
vote
1answer
119 views

Why does RAD throw a compile error on IOException(ex);

Why does RAD7 give a compile error of The constructor IOException(Exception) is undefined on the following line throw new IOException(ex); The Javadoc for Java 1.6/6.0 states that ...
1
vote
3answers
429 views

JDK 6: Is there a way to run a new java process that executes the main method of a specified class

I'm trying to develop an application that just before quit has to run a new daemon process to execute the main method of a class. I require that after the main application quits the daemon process ...
1
vote
1answer
53 views

Is it possible to call on a Java-method from JavaScript in Java6 1.6 script-engine?

I would like to call on an own Java-method from a JavaScript-file via the ScriptEngineManager provided in Java 1.6. Is that possible?
1
vote
1answer
560 views

How to run Jersey with the built in web server from Java SE 6?

I don't want to use Tomcat, Jetty or an Java EE 6 container to offer REST services but the built in web server.
1
vote
5answers
6k views

Eclipse: export to .jar AND include resource files (ANT)

Our project in eclipse approximately shows the following folders: application - src - JRE System Library [1.6] - Referenced Libraries - lib - rsc In our project, we would like ...
1
vote
2answers
2k views

send a mail from java5 and java6

I know similar questions have been asked many times befor, but I think this one slitly different :) I'm writing a maven report plugin which will send emails to a list of users. I now have the ...
1
vote
4answers
413 views

Java in bash at university fails with NoClassDefFoundError

I know there are many posts concerning NoClassDefFoundError, they all seem to be talking about jar files. While I'm comfortable with java in eclipse, I'm pretty lost as to why the simplest thing I can ...
1
vote
2answers
1k views

Eclipse 3.x unable to debug tomcat 5.5 with java 1.6.0_14?

I'm trying to launch and debug tomcat 5.5 with a webapp in java 6. I have set up JAVA_HOME in the tomcat's eclipse configuration (in "replace environment" mode) but I get the following error: ...
1
vote
2answers
554 views

Executing Java 5 Code With Java 6

Is there any way I can run class files (i.e. with main as the entry point) on JDK 6 that were compiled with Java 5?
1
vote
5answers
539 views

Upgrading a J2EE application to Java 6

With the upcoming end of life (EOL) of Java 5.0. We need to upgrade our enterprise application to work with Java 6. The application can be deployed on both WebLogic, WebSphere & JBoss. (It's up ...
1
vote
2answers
1k views

java.io.IOException: Job failed! when running a sample app on my osx with hadoop-0.19.1

bash-3.2$ echo $JAVA_HOME /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home bash-3.2$ bin/hadoop dfs -copyFromLocal conf /user/yokkom/input2 bash-3.2$ bin/hadoop jar hadoop-*-examples.jar ...
1
vote
2answers
142 views

Where can I find an applet that requires Java 6?

I currently have Java 5 installed on Windows. I'm trying to test the way the new Java Kernal installs when my Firefox browser comes across an applet requiring Java 6. Unfortunately the applets I try ...

1 2