Closure Compiler:ERROR - 无法读取

时间:2014-05-27 10:19:41

标签: javascript google-closure-compiler

我从官方Google网站(https://developers.google.com/closure/compiler/docs/gettingstarted_app)下载了Google Closure Compiler。然后运行它来缩小我的widget.js,但我收到了以下错误:

  

C:\ Users \ Administrator \ Downloads \ compiler-latest> java -jar   compiler.jar --js“wi dget.js”\ --js_output_file“output.js”ERROR -   看不懂:\

     

1个错误,0个警告

enter image description here

我尝试更改我的widget.js内容,如果widget.js包含一些语法错误,它会告诉我知道。但似乎“错误 - 无法读取”总是出现,即使我的widget.js是空的或只是有一个线路警报('test');

我该如何解决这个错误?

1 个答案:

答案 0 :(得分:-1)

您应该按如下方式运行编译器:

java -jar compiler.jar --js widget.js --js_output_file output.js

您可以将多个js文件放在一个空格中,而不是像你的情况那样没有双引号(“),单引号(')或斜杠(/)。

希望得到这个帮助。