I want to load a JavaScript file using Jint, but I can't seem to figure it out. The documentation said I could do something like engine.run(file1)
, but it doesn't appear to be loading any files. Do I need to do something special with the file name?
Here's my JavaScript file:
// test.js
status = "test";
Here's my C#
JintEngine js = new JintEngine();
js.Run("test.js");
object result = js.Run("return status;");
Console.WriteLine(result);
Console.ReadKey();
If I put in code manually in Run
it works.
object result = js.Run("return 2 * 21;"); // prints 42
I want to load a JavaScript file using Jint, but I can't seem to figure it out. The documentation said I could do something like engine.run(file1)
, but it doesn't appear to be loading any files. Do I need to do something special with the file name?
Here's my JavaScript file:
// test.js
status = "test";
Here's my C#
JintEngine js = new JintEngine();
js.Run("test.js");
object result = js.Run("return status;");
Console.WriteLine(result);
Console.ReadKey();
If I put in code manually in Run
it works.
object result = js.Run("return 2 * 21;"); // prints 42
Share
Improve this question
edited Aug 15, 2011 at 1:42
Andrew Russell
27.2k7 gold badges61 silver badges105 bronze badges
asked Aug 14, 2011 at 19:24
Daniel X MooreDaniel X Moore
15.1k17 gold badges83 silver badges94 bronze badges
5 Answers
Reset to default 4I found a workaround by manually loading the file into text myself, instead of loading it by name as mentioned here: http://jint.codeplex./discussions/265939
StreamReader streamReader = new StreamReader("test.js");
string script = streamReader.ReadToEnd();
streamReader.Close();
JintEngine js = new JintEngine();
js.Run(script);
object result = js.Run("return status;");
Console.WriteLine(result);
Console.ReadKey();
Personally I use:
js.Run(new StreamReader("test.js"));
Compact and just works.
Even more succinctly (using your code)
JintEngine js = new JintEngine();
string jstr = System.IO.File.ReadAllText(test.js);
js.Run(jstr);
object result = js.Run("return status;");
Console.WriteLine(result);
Console.ReadKey();
Try
using(FileStream fs = new FileStream("test.js", FileMode.Open))
{
JintEngine js = JintEngine.Load(fs);
object result = js.Run("return status;");
Console.WriteLine(result);
}
The syntax has changed. When using Jint 3.0.0-beta use the Execute method instead of Run.
StreamReader streamReader = new StreamReader("test.js");
string script = streamReader.ReadToEnd();
streamReader.Close();
Engine js = new Engine();
js.Execute(script);
object result = js.Execute("return status;");
Console.WriteLine(result);
Console.ReadKey();
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743655976a4485377.html
评论列表(0条)