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

  • SEARCH
  • Home
  • 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 8983435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:50:26+00:00 2026-06-15T20:50:26+00:00

I have a Java Map. I want to convert it in to JavaScript map.

  • 0

I have a Java Map. I want to convert it in to JavaScript map.

The java function to convert as JS map follows:

private Object getJSLocalizedValueMap() {

    Map<String, String> langSel = new HashMap<String, String>();
    langSel.add("en", true);
    langSel.add("de", false);
    langSel.add("fr", false);

    //Now convert this map into Javascript Map
    NativeObject nobj = new NativeObject();
    ScriptEngineManager factory = new ScriptEngineManager();
    ScriptEngine engine = factory.getEngineByName("javascript");
    for (Map.Entry<String, String> entry : langSel.entrySet()) {
        nobj.defineProperty(entry.getKey(), entry.getValue(), NativeObject.READONLY);
    }
    engine.put("langSel", nobj);
    return langSel;
}

In the JSP page’s javascript the code is:

var langs = ${messagesJS};

In Javascript, I got:

langs = {en=true, de=false, fr=false};

instead of

langs = {"en":true, "de":false, "fr":false}

Please suggest me how to achieve this?

  • 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-15T20:50:28+00:00Added an answer on June 15, 2026 at 8:50 pm

    You might be able to use the JSONObject class for this. It has a constructor that you pass in a Map. Call that and then call the toString() method and it should give you a JS array.

    http://www.json.org/javadoc/org/json/JSONObject.html#JSONObject%28java.util.Map%29

    So something like:

    Map<String, String> langSel = new HashMap<String, String>();
    langSel.add("en", true);
    langSel.add("de", false);
    langSel.add("fr", false);
    
    JSONObject jsonObj = new JSONObject(langSel);
    engine.put("langSel", jsonObj.toString());
    

    You will need to make sure the org.json.JSONObject class is on your classpath. Either download the JAR and add to classpath manually (through Eclipse or something) or if you are using Maven use a dependency like the following:

      <dependency>
        <groupId>org.json</groupId>
        <artifactId>json</artifactId>
        <version>20070829</version>
      </dependency>
    

    If you are not using Maven, you can still download the JAR from here: http://mvnrepository.com/artifact/org.json/json/20090211

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

Sidebar

Related Questions

I have this ArrayList in Java - List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Possible Duplicate: Java Ordered Map I have list of product object in the HashMap<Integer,Product>
I have a Parent class. import java.util.HashMap; import java.util.Map; public class Parent { Map<String,String>
I have Java Map (out of Strings and Ints) objects that I want to
I have a java map with string in its key and integer in its
I want to convert user input that comes as Map<String, String[]> to objects in
I've got a JSON string that I want to convert to a Map structure
I have the following xml string. I want to convert it in to a
I want to compare two Java Map s by a simple hash. Each object
Possible Duplicate: Java: How to convert List to Map I have arrayList ArrayList<Product> productList

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.