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

The Archive Base Latest Questions

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

I have a hashmap having four values a , b , c , d

  • 0

I have a hashmap having four values a,b,c,d and list having only a i want to see if the hashmap has the value a and print it.

hashmap.get('data') results a,b,c,d

list l is having a

how will i print only the value a

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

    A Map stores Key-Value pairs. It offers a values() method to get a collection of all values from the map.

    So basically you have to take your own list, get the values from the hashmap and check for every item in the list if it is a map value:

    public static Collection<String> contains(Map<String, String> map, List<String> list) {
    
       Collection<String> values = map.values();
       Set<String> result = new HashSet<String>();
       for (String listItem:list) {
         if (values.contains(listItem) {
           result.add(listItem);
         }
       }
       return result;  // contains a collection of all list items that are values of the map
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 493k
  • Answers 493k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer First tip: Use PB... it's well designed and does exactly… May 16, 2026 at 10:45 am
  • Editorial Team
    Editorial Team added an answer public GeoPoint getLocationFromAddress(String strAddress) { Geocoder coder = new Geocoder(this);… May 16, 2026 at 10:45 am
  • Editorial Team
    Editorial Team added an answer How are you changing the colour? You might want to… May 16, 2026 at 10:45 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a HashMap with various keys and values, how can I get one
I have a page with lots of data, tables and content. I want to
I've been having loads of problems trying to get a Spring/Hibernate web application to
i am having an issue, where java is reading an array list from a
I need to have very fast access to a big Map - several millions
Which datastructure would you use in the place of X to have efficient merges,
I am having some trouble creating a for loop within a constructor to iterate
I am having an OutOfMemory exception with a gallery over 600x800 pixels JPEG's. The
Having been spoiled by ruby for so long, I now find myself having to
I have an existing XML schema that contains a type that I would like

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.