BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Java Program to find duplicate Characters in a String

Last Updated: September 10, 2022 by Chaitanya Singh | Filed Under: Java Examples

This program would find out the duplicate characters in a String and would display the count of them. import java.util.HashMap; import java.util.Map; import java.util.Set; public… [Read More]

Java Serialization

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Here we are gonna discuss how to serialize and de-serialize an object and what is the use of it. What is Java Serialization? Serialization is… [Read More]

Check key & Value existence in Hashtable example – Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Example In this example we are gonna see how to check Key and value existence in Hashtable. We will be using following two methods to… [Read More]

Tags: Collections, Java-HashTable

Get size of Hashtable example in Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Example In this example we are gonna see how to get the size of Hashtable. We will be using size() method of Hashtable class to… [Read More]

Tags: Collections, Java-HashTable

Hashtable Iterator example – Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this example we will see how to iterate a Hashtable using Iterator. Using Iterator we can display Hashtable key and value separately for each… [Read More]

Tags: Collections, Java-HashTable

Hashtable in java with example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

This class implements a hash table, which maps keys to values. Any non-null object can be used as a key or as a value. Hashtable… [Read More]

Tags: Collections, Java-HashTable

Remove all mappings from Hashtable example – Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial we have seen how to remove a mapping from Hashtable based on key. In this tutorial we will learn how to… [Read More]

Tags: Collections, Java-HashTable

Remove mapping from Hashtable example – Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this tutorial we are gonna see how to remove a key-value mapping from Hashtable. We will be using remove(Object key) method of Hashtable class…. [Read More]

Tags: Collections, Java-HashTable

Java – Check if a particular key exists in HashMap example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial we learnt how to check whether a particular value exists in HashMap. In this example we are gonna see how to… [Read More]

Tags: Collections, Java-HashMap

Java – Check if a particular value exists in HashMap example

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In this example we are checking whether a particular value exists in HashMap or not. We will be using containsValue() method of HashMap class to… [Read More]

Tags: Collections, Java-HashMap

  • « Previous Page
  • 1
  • …
  • 111
  • 112
  • 113
  • 114
  • 115
  • …
  • 150
  • Next Page »

Java Examples

  • Check Odd-even
  • Linear Search
  • Binary Search
  • Floyd's Triangle
  • Reverse number
  • Random Number
  • first n prime numbers
  • Disp prime Numbers
  • Check Prime number
  • Palindrome String
  • Find factorial
  • Sum of elements of Array
  • Area of rectangle
  • Area of Square
  • Area of Triangle
  • Circle

Tutorials

  • Java Tutorial
  • OOPs Concepts
  • Java String
  • Exception handling
  • Java Multithreading
  • Java I/O
  • Java Serialization
  • Java Regex
  • Java AWT
  • Java Swing
  • Java Enum
  • Java Annotations

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap