使用 Eclipse 导出时无法使我的程序可执行

Cannot make my program executable when using Ecplipse export

亲爱的java爱好者,

我想借助 eclipse 将我的 java 程序制作成可执行的 .jar 文件。我导出到一个 .jar 文件,但当我双击它时它似乎不起作用?我想我遗漏了一些东西,但经过一段时间试图找到如何去做我找不到它。

有什么建议吗?

import java.util.Scanner;

public class GravityMoon {

public static void main(String[] args) {
            System.out.println("Please enter your earthweight in kilograms below:");

    Scanner earthweight = new Scanner(System.in);
    // Repeat until next item is a double
    while (!earthweight.hasNextDouble()) 
    {        
        // Read and discard offending non-double input
        earthweight.next(); 
        // Re-prompt
        System.out.print("Please enter your earthweight "
                + "in numerical kilograms: "); 
    }

    double moonweight;

    // Converts earthweight in moonweight 17%
    moonweight = earthweight.nextDouble() * 0.17; 

    // convert to whole numbers


    //closes keyboard input
    earthweight.close(); 

    //prints out your moonweight in a decimal number
    System.out.println("Your moonweight is " + Math.round(moonweight * 100d) /100d 
            + " kilograms.");

        }}

因为你没有说明具体问题,我可能只是提示一下:

  1. 导出为可执行 Jar

    在 Eclipse 中,有导出到 jar 文件的选项和另一个导出到可执行 jar 文件的选项(参见 http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-37.htm)。

  2. (我猜你正在使用 windows)尝试从控制台执行 jar 文件(类似于 java -jar )。

    双击 windows 中的 jar 文件不会打开终端 window。