gpt4 book ai didi

java - 错误找不到或加载主类

转载 作者:行者123 更新时间:2023-12-05 00:58:25 25 4
gpt4 key购买 nike

我想在终端窗口中运行我的类:

D:\workEclipse2\JUnitTest\bin>java -classpath D:\JUnit\hamcrest-core-1.3.jar;D:\
JUnit\junit-4.12.jar tax.TaxCommandLineRunner

我的 TaxCommandLineRunner 类的代码:

package tax;

import java.util.List;

import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;

public class TaxCommandLineRunner {

public static void main(String[] args) {
// TODO Auto-generated method stub
JUnitCore core = new JUnitCore();

Result result = core.run(AllTests.class);

if(result.wasSuccessful()){
System.out.println("All tax tests was successfull");
}else{
System.out.println("These tax tests was failure");

List<Failure> fails = result.getFailures();
fails.forEach(failure -> System.out.println(failure.getMessage()));
}


}

}

已编译的 AllTests.classTaxCommandLineRunner.class 位于 D:\workEclipse2\JUnitTest\bin

我的 jars 文件位于 D:\JUnit

我找不到我做错了什么。

最佳答案

我在终端窗口输入:

  D:\workEclipse2\JUnitTest\bin>java -classpath D:\JUnit\hamcrest-core-1.3.jar;D:\JUnit\junit-4.12.jar;. tax.TaxCommandLineRunner

我假设分号后面的点表示 Windows 的类路径,即在第一种情况下我不包括我的标准 java\jre。

关于java - 错误找不到或加载主类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34207807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com