我使用的是Google提供的闭包编译器。我在字符串变量中有JavaScript。需要在Java中使用闭包编译器来压缩字符串
我已经尝试了以下链接http://blog.bolinfest.com/2009/11/calling-closure-compiler-from-java.html的代码
这是我使用的代码,其中“ source”变量具有javascript的值
Compiler compiler = new Compiler();
CompilerOptions options = new CompilerOptions();
// Advanced mode is used here, but additional options could be set, too.
CompilationLevel.SIMPLE_OPTIMIZATIONS.setOptionsForCompilationLevel(options);
compiler.compile(source, options);
return compiler.toSource();
我在以下行中有错误:compiler.compile(source, options);