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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:14:58+00:00 2026-06-12T21:14:58+00:00

Is there a standard API call (or set of calls) that allows me to

  • 0

Is there a standard API call (or set of calls) that allows me to encode a list of key/value pairs into a SINGLE request parameter? Somehow I have never done this before.

What I am looking for is to generate a URL which encodes an arbitrarily long string of parameters that will be decoded by the indicated page. For example:

http://someth.ing/page?params=xxxxxxxxxxxxx

where the xxxxxxx is the encoded form of a

Map<String, String>

or if that isn’t available then a

List<String>

I know my alternative is to just encode each key as its own request parameter, but that creates a lot of parsing work on the decoding side I would rather avoid. Any suggestions?

  • 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-12T21:14:59+00:00Added an answer on June 12, 2026 at 9:14 pm

    You could just convert to/from JSON. You could use among others Google Gson for this:

    Map<String, String> data = createItSomehow();
    String dataAsJson = new Gson().toJson(data);
    String url = "http://example.com/some?data=" + URLEncoder.encode(data, "UTF-8");
    // ...
    

    And in the other side, assuming a servlet:

    String dataAsJson = request.getParameter("data");
    Map<String, String> data = new Gson().fromJson(json, new TypeToken<Map<String, String>>(){}.getType());
    // ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are many java standard and 3rd party libraries that in their public API,
In .NET 2.0 (in this case VB), is there a standard API that'll serialize
Is there any standard java api that returns the indexes declared in the database.
is there something like API built atop the standard ProcessBuilder for calling system programs?
Is there any standard way of debugging Javascript on a webpage that's being accessed
Is there a standard Java library that handles common file operations such as moving/copying
Is there a standard convention for the types of files that go in \Windows\
is there a standard way to encode the user location (country, state/region, town), so
Is there a standard or common way in C++ to handle static strings that
I have an Instagram API call that requests images tagged with CrookedSpaces, when those

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.