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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:15:05+00:00 2026-06-09T16:15:05+00:00

I want to send send HashMap object to the applet that requested it. A

  • 0

I want to send send HashMap object to the applet that requested it. A servlet has that HashMap object. Is there a way I can do this ?

Applet ------requests HashMap object---->Servlet listens to this request
                                                 |
                                                 |
                                     Servlet searches that HashMap Object
                                                 |
                                                 |
                                                \ /
<--Finally Send this to applet------------ Servlet gets the HashMap object                                                                

I have made a connection to the servlet and my servlet also has the HashMap object,but I don’t know how to send it to the applet and I wonder if it can be sent !

  • 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-09T16:15:07+00:00Added an answer on June 9, 2026 at 4:15 pm

    I’m going to make use of some external libraries in order to answer your question: Google Gson and Apache IO Utils.

    So you already have the HashMap in your Servlet and want to send it to the Applet:

    Map<String, String> myMap = new HashMap<String, String>();// or whatever
    Gson gson = new GsonBuilder().create();
    String jsonString = gson.toJson(myMap);
    IOUtils.write(jsonString, resp.getOutputStream());// where 'resp' is your HttpServletResponse
    IOUtils.closeQuietly(resp.getOutputStream());
    

    And to receive it in your Applet:

    String jsonString = IOUtils.toString(conn.getInputStream()); // where 'conn' is an HttpURLConnection
    IOUtils.closeQuietly(connection.getInputStream());
    Gson gson = new GsonBuilder().create();
    // The TypeToken is needed when Generics are involved
    Type typeOfHashMap = new TypeToken<Map<String, String>>() {}.getType();
    Map<String, String> myMap = gson.fromJson(jsonString, typeOfHashMap);
    

    And that’s it. It’s just a simple example but I hope you get something out of it.

    Of course you could be doing it by hand instead of using external libraries, but this way is much easier.

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

Sidebar

Related Questions

I want to send a HashMap object to a ReST resource as a POST
I have some action. I want send mail. usually i doing this way. public
How can I send array to stored procedure? I want send it from JS
I want to send a Link that contains a unique identifier and verify the
I want send an email in the background of iphone. Can anybody help me
I want so send every week an update by email. But Im afraid that
I want to send email from a Ruby application. Is there a call in
I want to send a UIImage to a server with socket. I'm using this
I am doing Objective C programming and I want send and receive requests(Login/data fetching)
I am developing mobile web page. I want send from this page request to

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.