Why can't I find Java desktop application in Netbeans 7.1

怎甘沉沦 提交于 2019-12-28 03:04:50

问题


I downloaded Netbeans 7.1 with all bundle from http://netbeans.org/downloads and installed it successfully on Windows 7.

But I can't find Java Desktop Application which should be under Java category when add new project as 7.0 does.

Where is it? Or what is the substitute one in 7.1? I need something to create GUI by dragging components.

Thanks.


回答1:


Look here: http://netbeans.org/bugzilla/show_bug.cgi?id=204661

Support for [B]SAF (JSR 296, basically the framework that was behind your "Java Desktop Application" project template) has been abruptly dropped (for no valid reason, let me add).

However, as Bill says in his answer, it is not necessary to use the SAF in order to visually design a form. NetBeans swing-designer (known as Matisse) can be used to design any JFrame, JDialog, JPanel, etc.

You just have to

Right click -> New -> JFrame Form...

and you're ready to drag-and-drop!

(The features you'll be missing are the extra bells and whistles that such framework provided, like SAF Actions, windowing persistence, simplified management for long running Tasks and related visual feedback [now you have to get your hands dirty with the SwingWorker class], etc)




回答2:


Java Desktop refers to an effort to create a standard or library (libraries) that never really produced anything of significance. I think its likely that they finally removed it from Netbeans.

Its easier to just create a new Java Application project, don't bother with a main, then create a new JFrame Form. That class will have a main for you to use, and you can also design the frame in the form. You can also create JPanel Form classes. Note: you can do this in just about any project in netbeans, there is nothing special about the projects for them.




回答3:


its better to use NetBeans 7.0 for full support of swing components. many tutorials and guides feature the "Java Desktop Application" (like the ones for JXMapKit : http://today.java.net/pub/a/today/2007/10/30/building-maps-into-swing-app-with-jxmapviewer.html )




回答4:


You can find something helpful to create CRUD desktop application in Java.

You can find it here.



来源:https://stackoverflow.com/questions/9146976/why-cant-i-find-java-desktop-application-in-netbeans-7-1

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