首页 > 解决方案 > 无法从 bash 运行 java 类

问题描述

我正在运行./test 8080脚本以从 Idea 的终端运行 Test.class java 文件

//this is test.sh file
#!/bin/bash  

# shellcheck disable=SC2068
java -classpath src/com/company Test $@

但我收到以下错误Error: Could not find or load main class Test 我不是一个 bash 人我是新来的,但我很高兴知道问题出在哪里?

标签: javabash

解决方案


推荐阅读