我使用Netbeans IDE开发了一个基本的桌面应用程序,在应用程序中我有一个名为Ok
的按钮。现在我创建了另一个项目,它是一个CRUD应用程序。有没有办法让我的第一个项目中的ok按钮在另一个项目中运行CRUD-app-或者如何链接ok ok按钮来打开/运行crud-app?在另一个项目中..项目名称是pro1和CruD-test-
下面是我的按钮的示例代码:
OK.addActionListener(new ActionListener(){
//please add a link to the CRUD-app contained in project Crud-test
@Max:我想在IDE上运行pro1并运行CruD-test作为jar ...如何将mu OK-button链接到CruD-test?
答案 0 :(得分:0)
基本上它将是代码:
OK.addActionListener(new ActionListener(){
MyCRUDApplication crudApp = new MyCRUDApplication(); //This is only an example, keep a gloabal reference as needed
//assuming MyCRUDApplication constructor would create and show its main window.
//Otherwise you will have to provide the relevant class that really shows the project.
}
为此,您应该将MyCRUDApplication
应用程序添加为Netbeans中的引用项目。它是explained here