master
zhang chengzhi 2024-09-04 20:46:43 +08:00
parent 4a3af2cb6f
commit fe3e92e611
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class RuleEngineVersionServiceImpl extends ServiceImpl<RuleEngineVersionM
OutputStream second = null; // 程序的输出 null 用 system.out
OutputStream third = null; // 程序的错误输出 .,null 用 system.err
// 程序编译参数 注意 我们编译目录是我们的项目目录
String[] strings = {"-classpath",engineWorkSourcePath,"-verbose","-d", engineWorkSourcePath, engineWorkSourcePath +"\\"+className_prefix+className+Suffix_JAVA};
String[] strings = {"-classpath",engineWorkSourcePath,"-verbose","-d", engineWorkSourcePath, engineWorkSourcePath +"/"+className+Suffix_JAVA};
// 0 表示成功, 其他表示出现了错误
System.out.println(Arrays.toString(strings));