1

I wrote a java program that contains many classes in eclipse, it is my first time that I write a code in java and in eclipse too, now I need to run this code on a server that doesn't have eclipse.

4

3 回答 3

4

Compiling & Running a Simple Program.

This is your best starting point.

于 2012-08-22T01:05:33.073 回答
1

使用“文件 -> 导出 -> JAR 文件”向导创建一个包含已编译类的 .jar 文件。然后,您可以将此 .jar 文件复制到您的服务器并使用 java.exe 运行它。从命令行使用“java -help”获取说明。

于 2012-08-22T01:07:56.970 回答
-3

请通过 Andrew 提供的链接

Eclipse 是一个 IDE,它促进了开发,但实际上并不需要运行您的代码,如果您想在某处的服务器中运行您的 java 文件,请确保您在“服务器”和路径中安装了 JRE,然后运行以下命令在服务器的 shell 环境中

javac filename.java

上面的命令将在同一目录中生成一个 .class 文件,这是可以使用以下命令执行的实际文件,

java filename

假设您的代码位于名为 filename.java 的文件中

于 2012-08-22T02:48:24.190 回答