使用javac在另一个java类文件中编译包名称的java类

时间:2014-06-05 01:51:21

标签: java javac

我正在尝试使用javac命令在另一个java类文件中编译java类文件。如果这两个文件没有任何包名,那就顺利了。

班级Laj

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
public class Laj {

      private static void printLines(String name, InputStream ins) throws Exception {
        String line = null;
        BufferedReader in = new BufferedReader(
            new InputStreamReader(ins));
        while ((line = in.readLine()) != null) {
            System.out.println(name + " " + line);
        }
      }

      private static void runProcess(String command) throws Exception {
        Process pro = Runtime.getRuntime().exec(command);
        printLines(command + " stdout:", pro.getInputStream());
        printLines(command + " stderr:", pro.getErrorStream());
        pro.waitFor();
        if(pro.exitValue() != 0){
            System.out.println(command + " exitValue() " + pro.exitValue());    
        }       
      }

      public static void main(String[] args) {
        try {
          runProcess("javac simpleTest.java");
          runProcess("java simpleTest");
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
    }

Class SimpleTest

public class simpleTest {
    public static void main(String[] args) {
        System.out.println("What's wrong with it");
    }
}

我可以使用命令 javac Laj.java java Laj 来编译和运行它们。但是,如果我在这两个类的前面添加包名称,例如 package compileTest ,并将Laj中的代码的runProcess部分修改为

runProcess("javac -d . compileTest.simpleTest.java");
runProcess("java compileTest.simpleTest");

代码不起作用。

任何人都可以帮助我,谢谢你。

1 个答案:

答案 0 :(得分:-1)

为什么不使用'JavaCompiler'类来编译你的java文件。请参阅下面的示例我已经编译了一个包含包名的java类。

Package Name = com.main
Class Name = MainClass.java
Source Dir = src

public  void compileClass() {
        System.setProperty("java.home", "G:\\Java\\Tools\\installed\\JDK");   // Set JDK path it will help to get compiler
        File root = new File("/src");   // Source Directory 
        File sourceFile = new File(root, "com/main/MainClass.java");    // Java file name with package 
        sourceFile.getParentFile().mkdirs();
        try {
            new FileWriter(sourceFile).close();  // Read Java file
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }



        JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
        System.out.println(compiler.run(null, null, null, sourceFile.getPath()));
    }