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 6223817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:33:21+00:00 2026-05-24T08:33:21+00:00

Is it possible to parse the string keys from a request such as this,

  • 0

Is it possible to parse the string keys from a request such as this, with the Java servlet API?

http://localhost:8080/?assocArray[key1]=value1&assocArray[key2]=value2&assocArray[key3]=value3

getParameterValues("assocArray") returns ["value3","value1","value1"]

The ordering of the values in the returned array is not order of the keys (not that it matters)

SOLVED: It is possible, the keys are interpreted as simple global key strings. Java doesn’t recognize them as an array. Use regex

  • 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-05-24T08:33:22+00:00Added an answer on May 24, 2026 at 8:33 am

    Not directly. The [] have no special meaning in HTTP request parameters and are by the Servlet API not recognized as array keys (you was perhaps a PHP programmer which indeed has a proprietary parser for this?). You need to parse and collect it yourself in a loop.

    For example,

    Map<String, String> assocArray = new LinkedHashMap<String, String>();
    
    for (Entry<String, String[]> entry : request.getParameterMap().entrySet()) {
        String name = entry.getKey();
    
        if (name.startsWith("assocArray[")) {
            String key = name.substring(name.indexOf('[') + 1, name.indexOf(']')); 
            assocArray.put(key, entry.getValue()[0]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Java: Parse a mathematical expression given as a string and return a
Is it possible to parse criteria from string?
Possible Duplicate: Parse multiple doubles from string in C# Say I have a line
Is it possible to parse YAML formatted strings with yaml-cpp? There isn't a YAML::Parser::Parser(std::string&)
I have got a cookie string from HTTP response header like the following line:
Possible Duplicate: Parse string into argv/argc I'm trying to write a fake shell using
how do you parse xml stored in a java string object? Java's XMLReader only
Possible Duplicate: How to parse a string to an int in C++? I have
Is it possible to vectorize the loop below? % String to parse (we want
Is it possible to parse camel case string in to something more readable. for

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.