-1

How to run a Java EE desktop application client outside Netbeans?

If I double click jar, it says "java exception". All (client, ejb and web) modules are deployed, and glassfish and desktop client jar are on same machine (Windows).

I've follwed this tut http://docs.oracle.com/javaee/1.2.1/devguide/html/Client3.html

and when I run runclient -client ConverterApp.ear -name MyConverterClient in cmd it says runclient unknown command.

4

1 回答 1

2

Java应用程序可以使用Java虚拟机执行如下:

java -cp yourjar.jar你的主类`

如果您的主类属于包,您应该编写如下内容:

java -cp yourjar.jarcom.mycompany.YourMainClass`

我希望这会有所帮助,尽管我并不真正理解“Java EE 桌面应用程序客户端”是什么意思。我希望这是一种连接到 Java EE 后端的 Java 应用程序。

于 2012-11-19T16:17:19.747 回答