Tagged Questions

3
votes
4answers
1k views

Java 6: Examples for implementing own scripting language using javax.script?

I really can't find good examples for implementing own scripting language using javax.script ... I need just something to start. Documentations Examples Tutorials Videos Presentations slides (PDF) ...
2
votes
1answer
140 views

Import a class in Scripting java (javax.script)

I want to import a class that I made in my project, into my script I did this but it doesn't work: function doFunction(){ //Objectif Mensuel importPackage(java.lang); ...