vote up 2 vote down star

Hello!

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)

Note 1: I'm really not talking about javascript ;)
Note 2: I don't need examples, how to use existing implementations, I want to implement an own language.

Thank you.

flag

64% accept rate

4 Answers

vote up 1 vote down check

What about the scripting.dev.java.net project, it includes many Script Engines (and their sources).

link|flag
Good idea! I'll look at it. Thanks! – ivan_ivanovich_ivanoff Sep 19 at 18:27
vote up 0 vote down

No better place to start than reading the spec (there's a separate spec document for script engine implementers): JSR 223

link|flag
Yes, I'm reading it already, but it's a bit too complex. I would appreciate something easier. – ivan_ivanovich_ivanoff Sep 19 at 11:43
vote up 0 vote down

Sorry, not really a direct answer: but rather than trying to use the javax.script package, try to implement first your language. Javacc or ANTLR are a good start.

link|flag
1) Wanted only to try the API out. 2) Have already a little own language ;) – ivan_ivanovich_ivanoff Sep 19 at 13:34
vote up 0 vote down

Have a look at the Java Scripting Programmer's Guide.

link|flag
That's more the usage part. "We will not cover implementation of JSR-223 compliant script engines in detail" – ivan_ivanovich_ivanoff Sep 19 at 16:54
I see. You should mention that you want the details. "Just something to start" sounds different. ;) – John Smithers Sep 19 at 17:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.