如何使用tools.jar编译方法打印java编译器错误日志?

kuarbcqp  于 2021-06-29  发布在  Java
关注(0)|答案(1)|浏览(503)

在idea中,我可以在控制台看到红色字体的编译错误,但是在linux服务器上部署jar时,我看不到编译日志,如何打印编译错误日志?

public static void main(String[] args) throws Exception { 
        String compliePath="D:\\testFole";
        String filename="D:\\test.java";
        String[]  arg = new String[] { "-d", compliePath,  filename };
        System.out.println(com.sun.tools.javac.Main.compile(arg));
    }

ldfqzlk8

ldfqzlk81#

好吧,如果我答对了你的问题,这里有一个结果的方法。我认为这将是独立于平台的。

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    private static Process process;

    public static void main(String[] args) {

        runCommand();
        getErrorMessage();

    }

    /**
     * This method executes/runs the commands
     */
    private static void runCommand()
    {
        File file = new File("D:\\\\test.java");

        String changeDirectory = "cmd start cmd.exe /c cd D:\\";
        String compile = " && javac D:\\test.java";
        String run = " && java "+file.getName().replace(".java","");
        String command = changeDirectory + compile + run;

        try {
               process = Runtime.getRuntime().exec(command);
        }catch (IOException e){}
    }

    /**
     * This method will get the errorStream from process
     * and output it on the console.
     */
    private static void getErrorMessage()
    {  

         try (BufferedReader errorReader = new BufferedReader(new InputStreamReader(process.getErrorStream())))
         {
             String line;

             if(errorReader.readLine() != null)
                while ((line = errorReader.readLine()) != null)
                    System.out.println(line);         //display error message

         }catch (IOException e){}
     }

}

相关问题