小编典典

Java导出为Jar时出错

java

两个问题

1)将Java项目导出为JAR文件时,应用程序如何知道包中的哪个类首先运行?我的applicatino特别要求userInterface.java文件在CommonDenom.java文件之前运行。

2)运行Java文件时,出现错误消息“无法启动Java JAR文件“ commonDenom.jar”。请在控制台中查看可能的消息。”

我从哪里开始弄清楚这一点?我检查了控制台,但弹出错误消息时似乎没有注册任何东西。

package commonDenom;

import java.util.Arrays;
import java.util.Scanner;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;


public class UserInterface {
    Shell shell;
    Button btnNext;
    Button btnDone;
    Text input;
    Text output;
    static int count;
    static int[] finalNums;
    int[] nums = new int[1000];

    public static void main(String[] args){
        Display display = new Display();
        new UserInterface(display);
        display.dispose();
    }

    public UserInterface(Display display){
        shell = new Shell(display);
        shell.setSize(220,350);
        shell.open();

        input = new Text(shell, SWT.SINGLE);
        input.setBounds(10, 10, 100, 20);

        btnNext = new Button(shell, SWT.PUSH);
        btnNext.setBounds(10, 40, 100, 30);
        btnNext.setText("Next");
        nextPress();

        btnDone = new Button(shell, SWT.PUSH);
        btnDone.setBounds(10, 80, 100, 30);
        btnDone.setText("Done");
        donePress();

        output = new Text(shell, SWT.SINGLE);
        output.setBounds(10, 120, 200, 200);

        while(!shell.isDisposed()){
            if(!display.readAndDispatch()){
                display.sleep();
            }
        }
    }

    public void nextPress(){

        btnNext.addSelectionListener(new SelectionAdapter(){
            int x = 0;
            @Override
            public void widgetSelected(SelectionEvent e) {
                    nums[x] = Integer.parseInt(input.getText());
                    System.out.println("nums[" + x + "]:" + nums[x]);
                    x++;
                    count++;
            }
        });
    }

    public void donePress(){
        btnDone.addSelectionListener(new SelectionAdapter(){
            @Override
            public void widgetSelected(SelectionEvent e) {
                finalNums = new int[count]; 
                for(int i = 0; i < count; i++){
                    finalNums[i] = nums[i];
                }
                System.out.println("finalNums:" + Arrays.toString(finalNums));
                commonDenom.compare();
                if(commonDenom.getResult() == 0){
                    output.setText(Arrays.toString(finalNums) + "\nThese numbers do not have a \ncommon multiplier");
                }
                else{
                    output.setText(Arrays.toString(finalNums) + "\nResult:" + String.valueOf(commonDenom.getResult()));
                }
            }
        });
    }
    public static int[] getNums(){
        return finalNums;
    }
}

Manifest.txt位置:/ Dropbox / workspace / commonDenom / bin

类位置:/ Dropbox / workspace / commonDenom / bin / commonDenom /

类名:

commonDenom.class
UserInterface.class
UserInterface$1.class (I didn't create this)
UserInterface$2.class (I didn't create this)

Manifest.txt内容(两个空白行):

Main-Class: commonDenom.UserInterface

jar tf CommonDenom.jar返回以下内容:

META-INF/
META-INF/MANIFEST.MF
Manifest.txt
commonDenom/
commonDenom/commonDenom.class
commonDenom/UserInterface$1.class
commonDenom/UserInterface$2.class
commonDenom/UserInterface.class

阅读 267

收藏
2020-12-03

共1个答案

小编典典

我建议先手动创建罐子。这将是一个很好的健全性测试,您将了解执行此操作所需的条件。步骤如下:

  1. Manifest.txt某个地方创建一个文件,比方说您的项目根目录。一行就足够了,像这样:
    Main-Class: commonDenom.UserInterface
    

确保文件以换行符结尾。默认情况下,Eclipse不会在文件末尾添加换行符。尾随空白行也可以。

  1. 转到Eclipse放置您的类文件的 父目录 。例如,在Maven项目中,这是target/classes相对于项目根目录的。可能会改用Ant构建bin。在你的榜样,这应该是一个包含目录commonDenom(其中又包含构建产品:UserInterface.class

  2. 创建罐子:

    jar cfm /tmp/somename.jar /path/to/Manifest.txt commonDenom
    

    or probably:

    jar cfm /tmp/somename.jar /path/to/Manifest.txt *

这会将您的类文件树与指定的清单文件一起放入jar。

现在您应该可以运行该文件了。这可以作为您的基准测试。

您可以使用以下命令检查jar的内容:

jar tf /tmp/somename.jar

它应该打印如下内容:

META-INF/
META-INF/MANIFEST.MF
commonDenom/UserInterface.class
...  # your other class files...

现在您已经完成了基准测试,您可以尝试使用Eclipse创建jar。如果Eclipse创建的jar不起作用,则可以查看其内容以查看与基准案例的区别,这将有助于您调试问题。

2020-12-03