#13 - How to convert HashMap to ArrayList in Java? - Naveen AutomationLabs

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

Комментарии • 16

  • @qaisqais3987
    @qaisqais3987 4 года назад +2

    Thank you very much Naveen! I am refresher got a very understanding of Collections after reviewing you Useful Videos.

  • @funwithcooking399
    @funwithcooking399 4 года назад +2

    Your way to teach is really awesome..it is helping me allot to learn new concepts..

  • @vaishnavis6653
    @vaishnavis6653 4 года назад +2

    Thank you naveen.. all your videos are very useful..

  • @joshbenjamin1100
    @joshbenjamin1100 2 года назад

    Love your content. It's incredibly helpful. Absolutely had to join!

  • @SarangHoley
    @SarangHoley 4 года назад +2

    Thanks for the video Naveen 👍, the covered topic make things easy in different use cases while coding 😊😊

  • @vijaykumar-pd8zi
    @vijaykumar-pd8zi Год назад +1

    Adding to this, for printing both key and values in ArrayList are :
    List ls3 = new ArrayList(hamp.entrySet());
    System.out.println("Key and values of List are " + ls3);

  • @sarahfatima6387
    @sarahfatima6387 2 года назад +1

    I need your help I am trying to collect two algorithms the first use hashmap and second use arraylist I want to put hashmap results and use them in second algorithm

  • @shashikant-yy6bm
    @shashikant-yy6bm 3 года назад

    Hi Naveen
    I need to compare two csv excel file row by row for both excel file using this method and display the data of a perticular row which is not matched.
    So, Can you pls help me on that.

  • @grvlal
    @grvlal 11 месяцев назад

    Thanks for the informative session

  • @vivekaanand6444
    @vivekaanand6444 3 года назад +1

    Hi Naveen , all ur videos are really helpful and easy to understand ur way of explanation is very clear and crystal.
    Have small doubt in this program , have given company names in Key Google , Amazon , CISCO , but when printing in console it is not printing in same order it is getting shuffled can u pls explain the logic on that ?

    • @Coolharshit149
      @Coolharshit149 3 года назад +1

      Watch the last to the last video for that. HashMap will print in the order of bucket numbers.

  • @mertm2245
    @mertm2245 3 года назад +3

    List compNamesList = compMap.keySet().stream().collect(Collectors.toList());
    I think we can add this way of converting keyset/value to list as well by the help of collect method of jdk 1.8

  • @akshaymg2657
    @akshaymg2657 4 года назад

    I have some questions. I know selenium with java. But for an automation tester with 3yrs experience, what all skills they will expect? REST API better to learn? what about Jira tool and Agile methodology? Anything else need to learn? POSTMAN enough or SOAP UI required? I have seen CI/CD Jenkins etc in some job details. Do I need to know that for automation testing?

  • @sureshgarine
    @sureshgarine 4 года назад

    can u create a video with HashMap key is a string(student name) and value is an object, object referring to another student information(school name, address, phone number)?