I am writing a code to read a local text file into my No Magic Cameo Systems Modeler. I am using Javascript Rhino for the same. But not getting any viable solution to read the text file.
I used Java's bufferedReader class but then I am getting the following error :
"org.mozilla.javascript.EvaluatorException: missing ; before statement (#25)"
Can anyone assist me in what I am doing wrong. I am fairly new to javascript .
You're trying to execute Java code, not JavaScript code, so Rhino throws an error because you're not providing it valid JavaScript code
For example File fileR = ...
: this is Java code. The JavaScript equivalent is: var fileR = ....