com.sun.tools.javac.main.JavaCompiler.compile()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(139)

本文整理了Java中com.sun.tools.javac.main.JavaCompiler.compile()方法的一些代码示例,展示了JavaCompiler.compile()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JavaCompiler.compile()方法的具体详情如下:
包路径:com.sun.tools.javac.main.JavaCompiler
类名称:JavaCompiler
方法名:compile

JavaCompiler.compile介绍

[英]Main method: compile a list of files, return all compiled classes
[中]Main方法:编译文件列表,返回所有编译过的类

代码示例

代码示例来源:origin: org.kohsuke.sorcerer/sorcerer-javac

public void compile(List<JavaFileObject> sourceFileObject)
  throws Throwable {
  compile(sourceFileObject, List.<String>nil(), null);
}

代码示例来源:origin: org.jvnet.sorcerer/sorcerer-javac

public void compile(List<JavaFileObject> sourceFileObject)
  throws Throwable {
  compile(sourceFileObject, List.<String>nil(), null);
}

代码示例来源:origin: konsoletyper/teavm-javac

public void compile(List<JavaFileObject> sourceFileObject)
  throws Throwable {
  compile(sourceFileObject, List.<String>nil(), null);
}

代码示例来源:origin: sc.fiji/javac

public void compile(List<JavaFileObject> sourceFileObject)
  throws Throwable {
  compile(sourceFileObject, List.<String>nil(), null);
}

代码示例来源:origin: stackoverflow.com

JavaCompiler compiler = new JavaCompilerFactory().createCompiler("eclipse");

MemoryResourceReader mrr = new MemoryResourceReader();
mrr.add("resource name string", yourJavaSourceString.getBytes());

MemoryResourceStore mrs = new MemoryResourceStore();

CompilationResult result = compiler.compile(sources, mrr, mrs);

// don't need the result, unless you care for errors/warnings
// the class should have been compiled to your destination dir

代码示例来源:origin: org.checkerframework/dataflow

public void write(int b) throws IOException {}
          }));
  javac.compile(List.of(l), List.of(clas), List.of(typeProcessor));
} catch (Throwable e) {

代码示例来源:origin: konsoletyper/teavm-javac

fileObjects = fileObjects.prepend(fo);
comp.compile(fileObjects,
       classnames.toList(),
       processors);

代码示例来源:origin: org.kohsuke.sorcerer/sorcerer-javac

fileObjects = fileObjects.prepend(fo);
comp.compile(fileObjects,
       classnames.toList(),
       processors);

代码示例来源:origin: sc.fiji/javac

fileObjects = fileObjects.prepend(fo);
comp.compile(fileObjects,
       classnames.toList(),
       processors);

代码示例来源:origin: org.jvnet.sorcerer/sorcerer-javac

fileObjects = fileObjects.prepend(fo);
comp.compile(fileObjects,
       classnames.toList(),
       processors);

相关文章