views:

739

answers:

3

I developed a java application with netbeans. It used jdk 1.6.

It works fine.

But now the requirement is I need to build the jar for the application from the .java files in another machine without netbeans and where jdk 1.5 is used. I cannot upgrade that machine to jdk 1.6.

Is there any way I could make my java files compile and work in jdk 1.5 machine with a possible minimal change to my source code..

The error is javax.swing.grouplayout not available in jdk 1.5

Please help...

A: 

This test specification has the info that you need, though it lacks screen shots. Pay special attention to 'steps' 7 and 8.

vkraemer
+5  A: 

Use the netbeans preferences and select org.jdesktop...., update manually the generated code by right-click in the form (Inspector Window -> select swing layout extensions instead of standard java6 code).

John Doe
+2  A: 

For NetBeans, see the answer by John Doe. For Eclipse with MyEclipse so you can use Matisse, in the Outline View, select the Form. Now in the Properties View look at "Layout Generation Style" and select "Swing Layout Extensions Library" rather than "Standard Java 6 Code."

Eddie