在 Ubuntu 中使用 javac 编译时出错

Error while compiling with javac in Ubuntu

我正在尝试将 Ubuntu 中的某些软件编译为 运行。我下载了它,我看到有一个 compile.bat 文件。我尝试用 Wine 运行 它,但出现了一些错误。之后,我使用与 compile.bat 文件相同的命令创建了一个 compile.sh 文件。这些命令是:

javac -extdirs lib/ core/*.java
javac -extdirs lib/ movement/*.java
javac -extdirs lib/ report/*.java
javac -extdirs lib/ routing/*.java
javac -extdirs lib/ gui/*.java
javac -extdirs lib/ input/*.java
javac -extdirs lib/ applications/*.java
javac -extdirs lib/ interfaces/*.java

我尝试 运行 .sh 脚本,但出现此错误:

root@vbox:/media/sf_shared/one_1.4.1# ./compile.sh 
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11
error: option -extdirs not allowed with target 11

这些是我的 java 版本:

javac 11.0.4
/usr/bin/javac
openjdk version "11.0.4" 2019-07-16
OpenJDK Runtime Environment (build 11.0.4+11-post-Ubuntu-1ubuntu218.04.3)
OpenJDK 64-Bit Server VM (build 11.0.4+11-post-Ubuntu-1ubuntu218.04.3, mixed mode, sharing)
/usr/bin/java

似乎 "extdirs" 选项不存在。但是,它被列为 javac 选项:

-extdirs <dirs>              Override location of installed extensions

root@vbox:/media/sf_shared/one_1.4.1# javac -extdirs
error: -extdirs requires an argument
Usage: javac <options> <source files>
use --help for a list of possible options

我该如何解决?任何帮助都会有用,因为我对 Java.

了解不多

更改为java1.8 解决了@seconf 所说的问题。