Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8335715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:45:17+00:00 2026-06-09T03:45:17+00:00

I need a JVM-based scripting language for my app and would like to see

  • 0

I need a JVM-based scripting language for my app and would like to see what else is out there besides Groovy, Ruby, and Python.

Google keeps pointing me to a dead page at http://scripting.dev.java.net/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T03:45:19+00:00Added an answer on June 9, 2026 at 3:45 am

    This is not a official list, but you can start here: http://en.wikipedia.org/wiki/List_of_JVM_languages

    Rhino (JavaScript) is implemented in the Oracle JDK/JRE by default.

    With this code you can see what scripting languages are available in your JDK:

    import java.util.*;
    import javax.script.*;
    
    public class A {
    
        public static void main( String[] args ) {
    
            ScriptEngineManager mgr = new ScriptEngineManager();
            List<ScriptEngineFactory> factories = mgr.getEngineFactories();
    
            for (ScriptEngineFactory factory : factories) {
    
                System.out.println("ScriptEngineFactory Info");
    
                String engName = factory.getEngineName();
                String engVersion = factory.getEngineVersion();
                String langName = factory.getLanguageName();
                String langVersion = factory.getLanguageVersion();
    
                System.out.printf("\tScript Engine: %s (%s)%n", engName, engVersion);
    
                List<String> engNames = factory.getNames();
                for(String name : engNames) {
                    System.out.printf("\tEngine Alias: %s%n", name);
                }
    
                System.out.printf("\tLanguage: %s (%s)%n", langName, langVersion);
    
            }
    
        }
    
    }
    

    This example was obtained here: http://www.oracle.com/technetwork/articles/javase/scripting-140262.html

    You may want to try Lua too. Take a look here: how can I embed lua in java?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to specify JVM options when running my app or the tests
Will netbeans 6.9 (and whatever else I'll need for Java development - JVM, mysql,
I need to configure where the jvm crash logs are created. I like the
Normally to attach a debuger to a running jvm you would need start the
I need to know when the finalize() method is called in the JVM .
I need to disable IPv6. For that the java documentation indicates setting jvm property
Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0
Need just a push in the right direction with this. I'm building a multi-language
I need to import a certificate into my JVM keystore. I am using the
I need to remotely profile a JVM for CPU Usage, IO stats and File

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.