我只是在徘徊。是否有可能使用Java命令执行makefile.in?像你可以用Java和Ant做的事情。
由于
答案 0 :(得分:4)
如果我正确理解了问题和评论,那么您希望使用类似Runtime.exec(String)的内容。
String command = "make stuff" ; the make command you wish to run
String [] envp = { } ; if you want to set some environment variables
File dir = new File ( "/home/me/" ) ; // this is the directory where the Makefile is
Process proc = Runtime.getRuntime().exec(command,envp,dir);
proc.waitFor ( ) ;