如何使用jci编译java类?

发布于 2024-10-18 15:08:06 字数 1215 浏览 1 评论 0原文

有人我使用这个:

org.apache.commons.jci.compilers.JavacJavaCompiler

我有一个 jci 类:

public void compile() {
    sourceDir = new File("java");
    sources = new String[] { "test/HelloWorld.java" };
    target = new File("result");

    JavacJavaCompilerSettings settings = new JavacJavaCompilerSettings();

    JavacJavaCompiler javacJavaCompiler = new JavacJavaCompiler(settings);

    System.out.println("compile -> " + sources);
    System.out.println("compile -> " + sourceDir);
    System.out.println("compile -> " + target);

    CompilationResult result = javacJavaCompiler.compile(sources,
            new FileResourceReader(sourceDir),
            new FileResourceStore(target));

    for (CompilationProblem cp : result.getErrors()) {
        System.out.println("compile -> " + cp.getStartLine());
        System.out.println("compile -> " + cp.getMessage());
    }
}

我的输出是:

 compile -> 0
 compile -> Failure executing javac, but could not parse the error: javac: file not found:     test/HelloWorld.java
 Usage: javac <options> <source files>
 use -help for a list of possible options

一些想法,ty。

somebody I use this:

org.apache.commons.jci.compilers.JavacJavaCompiler

I have a jci class:

public void compile() {
    sourceDir = new File("java");
    sources = new String[] { "test/HelloWorld.java" };
    target = new File("result");

    JavacJavaCompilerSettings settings = new JavacJavaCompilerSettings();

    JavacJavaCompiler javacJavaCompiler = new JavacJavaCompiler(settings);

    System.out.println("compile -> " + sources);
    System.out.println("compile -> " + sourceDir);
    System.out.println("compile -> " + target);

    CompilationResult result = javacJavaCompiler.compile(sources,
            new FileResourceReader(sourceDir),
            new FileResourceStore(target));

    for (CompilationProblem cp : result.getErrors()) {
        System.out.println("compile -> " + cp.getStartLine());
        System.out.println("compile -> " + cp.getMessage());
    }
}

and my output is:

 compile -> 0
 compile -> Failure executing javac, but could not parse the error: javac: file not found:     test/HelloWorld.java
 Usage: javac <options> <source files>
 use -help for a list of possible options

some idea, ty.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征棹 2024-10-25 15:08:06

输出清楚地告诉您编译器无法使用您提供的路径名找到源文件。我想到了两个可能的原因:

  • 您提供了错误的源文件路径名,或者
  • JVM 的“当前目录”不是包含源路径名中使用的“test”目录的目录。

要尝试的事情:

  • 使用源文件的绝对路径名,只是为了证明您可以运行编译器。
  • 打印出 System.getProperty("user.dir") 的值...该值应与 JVM 的当前目录匹配。在此基础上,找出源文件的相对路径名应该是什么。

The output is telling you clearly that the compiler cannot find your source file with the pathname that you have supplied. Two possible causes spring to mind:

  • you've supplied the wrong source file pathname, or
  • the JVM's "current directory" not the directory that contains the "test" directory used in the source pathname.

Things to try:

  • Use an absolute pathname for the source file, just to prove that you can run the compiler.
  • Print out the value of System.getProperty("user.dir") ... which should match the JVM's current directory. Based on that, figure out what the relative pathname of the source file should be.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文