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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:01:54+00:00 2026-05-26T07:01:54+00:00

How can I cast a Map<Object,Object> to Map<String,String> in the cleanest way? Is there

  • 0

How can I cast a Map<Object,Object> to Map<String,String> in the cleanest way?

Is there a way to do that without iterating over the map?

Thanks

  • 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-26T07:01:55+00:00Added an answer on May 26, 2026 at 7:01 am

    I think it’s a good idea to explain why the simple solution doesn’t work and why you never, ever should use this.

    Assume you could cast List<Object> to List<String> (the same applies to Map, just a simpler interface). What would you expect to happen from the following code:

    List<Object> m = Something;
    m.add("Looks good.");
    m.add(42);
    List<String> s = (List<String>)m; // uhuh, no we don't want that.
    String myString = s.get(1); // huh exception here.
    

    Now you CAN hack it indeed using Bohemians/Chris solution, but you basically destroy Java’s type system. DON’T DO THAT. You don’t want a List<String> to contain an Integer! Have fun debugging that later on – the additional code of looping through all variables will avoid lots of headaches and hardly is a performance problem.

    If there’s a reason to declare the Map as taking an Object instead of a String someone may add any object to it – usually you should be able to avoid this with a better generic.

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

Sidebar

Related Questions

I wrote a class that has a map of <String, Object> . I need
Is there a way to get a Map<String,Integer> for instance? The call seems to
Can you cast a List<int> to List<string> somehow? I know I could loop through
How can I cast a bigint variable to a string? DECLARE @id bigint
I have a QVariant object within a QTreeWidgetItem, how can I cast it to
I have a class Something that implements ISomething . How can I convert/cast from
Everything inherits from object. It's the basis of inheritance. Everything can be implicitly cast
I have read that I can create an implementation of javax.ws.rs.ext.ExceptionMapper that will map
I'm wanting to write a method that I can use to initialise a Map.
Is it possible to overload operators in such a way that you can capture

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.