如何在ide方面运行java文件

时间:2015-11-18 00:34:25

标签: java eclipse

所以我有这个程序,我想给别人使用。问题是这个人没有ide,他们也不知道如何使用cmd。那我该怎么办?该程序在eclipse中运行良好,但我知道如何让它在eclipse之外工作。

import javax.swing.JOptionPane;

public class Encrypter {
     public static void main(String []args){
    //varibles
         String input;
         String inputtwo;
         String inputthree;
         String inputfour;
         int x;
         int y;
         int z;
         int n;
         int xtwo; 
         int ytwo;
         int ztwo;
         int ntwo;

    //takes input 
    input =
            JOptionPane.showInputDialog( "What is your first number?" );
    inputtwo =
            JOptionPane.showInputDialog( "What is your second number?" );
    inputthree =
            JOptionPane.showInputDialog( "What is your third number?" );
    inputfour  =
            JOptionPane.showInputDialog( "What is your fourth number?" );
    // changes the to ints
    x=Integer.parseInt(input);
    y=Integer.parseInt(inputtwo);
    z=Integer.parseInt(inputthree);
    n=Integer.parseInt(inputfour);

    //maths and stuff
    xtwo= (x +7)%10;
    ytwo= (y +7)%10;
    ztwo= (z +7)%10;
    ntwo= (n +7)%10;


    //shows it
            JOptionPane.showMessageDialog(null,  xtwo + "" + ytwo + "" + ztwo  + "" + ntwo);
    System.exit( 0 );
}

}

1 个答案:

答案 0 :(得分:0)

右键点击该项目 - >选择Export,然后选择Runnable Jar。只需在以下窗口中提供导出路径。

Export Runnable Jar

快速搜索可以获得results from SO