Netbeans Web 服务客户端仅在从 IDE 运行时才工作
我使用 Netbeans 6.8 和 Metro 2.0 编写了一个简单的应用程序,它调用 Web 服务并在 java swing 组件中显示结果。当我在 Netbeans IDE 中运行该应用程序(使用 F6)时,该应用程序运行良好。
但是,当我尝试从 dist 文件夹中的 .jar 文件运行已编译的应用程序时,我的 swing UI 出现,但当我按下导致调用 Web 服务的按钮时,什么也没有发生。
有人知道我怎样才能让它发挥作用吗?
Using Netbeans 6.8 and metro 2.0 I have written a simple application that makes calls to a webservice and displays the results in java swing components. When I run the application in the Netbeans IDE (using F6), the application works perfectly.
However, when I attempt to run the compiled application from the .jar file in the dist folder, my swing UI comes up, but when I press the button that causes my web service to be called, nothing happens.
Anyone know how I can get this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在终端窗口 (CMD.EXE) 中运行,看看是否有任何异常打印到控制台。
尝试
您的动作侦听器在独立时可以工作吗?通过将消息打印到 System.out 进行确认。
Try running in a terminal window (CMD.EXE) to see if there are any exceptions printed to the console.
Does your action listener work when stand alone? Confirm by printing a message to System.out.