Warning: include_once(/home/tabrez/www/talk/mtrefsearch.php) [function.include-once]: failed to open stream: No such file or directory in /home/tabrezsyed/mandalivia.com/talk/archives/000510.php on line 118
Warning: include_once() [function.include]: Failed opening '/home/tabrez/www/talk/mtrefsearch.php' for inclusion (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/tabrezsyed/mandalivia.com/talk/archives/000510.php on line 118
September 02, 2003
java's jar option
The sun java vm has a -jar option. Be careful when using this since it also negates all the classpath values without warning.
Java –classpath foo;bar; -jar js.jar
The classpath was being reset to only js.jar
The solution:
Java –classpath rtest.jar;js.jar org.mozilla.javascript.tools.shell.Main. foo.js
This works like a charm!
Posted at September 2, 2003 04:12 PM