質問

according to this answer

the dart:io libraries are only for the server/command-line, so they can't be compiled with dart2js.

is it possible to read from stdin and write to stdout with dart2js e.g:

$ java -jar ../../Downloads/rhino1_7R4/js.jar myjs.js < in.txt > out.txt

I'm considering editing the dart2js generated file and adding something like:

importPackage(java.io);
importPackage(java.lang);
scan = new BufferedReader( new InputStreamReader(System['in']) );
役に立ちましたか?

解決

dart2js is for running in the browser.
dart:io will not convert to JS because the browser doesn't support this functionality (like stdout/stdin).

Do you want to run JS generated from Dart running on the Server using Rhino? Maybe you could integrate the Dart VM in your app and run Dart code without transpiling to JS.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top