javax.swing.grouplayout not exist in jdk 1.5

依然范特西╮ 提交于 2019-12-21 19:05:04

问题


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...


回答1:


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).




回答2:


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."



来源:https://stackoverflow.com/questions/1880888/javax-swing-grouplayout-not-exist-in-jdk-1-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!