Iterate Through the Values of HashMap in Java

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

577 Views

Use Iterator to iterate through the values of HashMap −HashMap hm = new HashMap(); // Put elements to the map hm.put("Bag", new Integer(1100)); hm.put("Sunglasses", new Integer(2000)); hm.put("Frames", new Integer(800)); hm.put("Wallet", new Integer(700)); hm.put("Belt", new Integer(600));Now, use Iterator to display each and every value and key −// Get an iterator Iterator i = set.iterator(); // Display elements while(i.hasNext()) { Map.Entry me = (Map.Entry)i.next(); System.out.print(me.getKey() + ": "); System.out.println(me.getValue()); }The following is an example to iterate through the values of HashMap −Example Live Demoimport java.util.*; public class Demo { public static ... Read More

Why Sanskrit is Known as the Mother of All Languages

Knowledge base
Updated on 30-Jul-2019 22:30:24

6K+ Views

Sanskrit is the Holy and Divine language of India, written in Devanagari script which is also known for its clarity and beauty. Sanskrit belongs to the Indo-European languages family. The meaning of the word "Sanskrit" is refined, decorated and produced in perfect form. This is the oldest language ever attested on Earth.Covers A Larger PrecinctThough not for all the languages, Sanskrit is surely the mother of many languages, especially languages spoken in Northern India. Even many words from Dravidian languages are derived from Sanskrit. Almost all of the ancient kinds of literature such as the Vedas, Upanishads, Epics, Shastras, Puranas ... Read More

Remove Key from TreeMap in Java

Samual Sam
Updated on 30-Jul-2019 22:30:24

624 Views

Use the remove() method to remove a key from TreeMap.Let us first create a TreeMap and add some elements −TreeMap m = new TreeMap(); m.put(1, "India"); m.put(2, "US"); m.put(3, "Australia"); m.put(4, "Netherlands"); m.put(5, "Canada");Let us remove a key now. Here, we are removing key 3 now −m.remove(3)The following is an example to remove a key from TreeMap −Example Live Demoimport java.util.*; public class Demo {    public static void main(String args[]) {       TreeMap m = new TreeMap();       m.put(1, "India");       m.put(2, "US");       m.put(3, "Australia");       m.put(4, "Netherlands");   ... Read More

Create File and Change Its Attribute to Read-Only in Java

Samual Sam
Updated on 30-Jul-2019 22:30:24

1K+ Views

The attribute of a file can be changed to read-only by using the method java.io.File.setReadOnly(). This method requires no parameters and it returns true if the file is set to read-only and false otherwise.A program that demonstrates this is given as follows −Example Live Demoimport java.io.File; public class Demo {    public static void main(String[] args) {       boolean flag;       try {          File file = new File("demo1.txt");          file.createNewFile();          flag = file.setReadOnly();          System.out.println("File is read-only?: " + flag);       ... Read More

Is It Necessary to Have a Responsive Website?

yashwanth sitamraju
Updated on 30-Jul-2019 22:30:24

136 Views

It won't be surprising for you to hear that mobile phone usage has been increasing day by day. With the launch of modern smartphones hitting the market, much of the population now expect to be able to do many everyday tasks through their mobile phones. As more and more people are using mobile phones over desktop it is clear that the mobile phone is taking over desktops for internet surfing.The fundamental thing for a website is that it should be mobile friendly; it should be designed in such a way that it is equally compatible with mobile phones as well ... Read More

Clear LinkedList in Java

Arjun Thakur
Updated on 30-Jul-2019 22:30:24

1K+ Views

An LinkedList can be cleared in Java using the method java.util.LinkedList.clear(). This method removes all the elements in the LinkedList. There are no parameters required by the LinkedList.clear() method and it returns no value.A program that demonstrates this is given as follows.Example Live Demoimport java.util.LinkedList; public class Demo { public static void main(String[] args) { LinkedList l = new LinkedList(); l.add("Orange"); l.add("Apple"); l.add("Peach"); l.add("Guava"); ... Read More

Remove Key from TreeMap if Associated with Given Value in Java

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

181 Views

Use the remove() method to remove a key from a TreeMap only if it is associated with a given value. Let us first create a TreeMap and add some elements −TreeMap m = new TreeMap(); m.put(1, "India"); m.put(2, "US"); m.put(3, "Australia"); m.put(4, "Netherlands"); m.put(5, "Canada");To remove a key, set the key and the associated value here. If the associate value exists, then the key will get removed −m.remove(3, "Australia")The following is an example to remove a key from a TreeMap only if it is associated with a given value −Example Live Demoimport java.util.*; public class Demo {    public static void ... Read More

List File System Roots in Java

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

382 Views

The method java.io.File.listRoots() is used to list the file system roots in Java. This method requires no parameters. It returns the available file system roots in the form of an array of file objects and if the file system roots cannot be determined, it returns null.A program that demonstrates this is given as follows −Example Live Demoimport java.io.File; public class Demo {    public static void main(String[] args) {       File[] roots = File.listRoots();       try {          for(File r : roots) {             System.out.println(r);         ... Read More

Get the Fields in Each Constraint in MySQL

Vrundesha Joshi
Updated on 30-Jul-2019 22:30:24

116 Views

Let’s say we have a database “business” with number of tables. If you want to Get the fields in each constraint, then use the below query.The below query is to get the fields in each one of those constraints −mysql> select * −> from information_schema.key_column_usage −> where constraint_schema = 'business';The following is the output −+--------------------+-------------------+--------------------------+---------------+--------------+------------------------------+--------------+------------------+-------------------------------+-------------------------+-----------------------+------------------------+ | CONSTRAINT_CATALOG | CONSTRAINT_SCHEMA | CONSTRAINT_NAME          | TABLE_CATALOG | TABLE_SCHEMA | TABLE_NAME                   | COLUMN_NAME | ORDINAL_POSITION  | POSITION_IN_UNIQUE_CONSTRAINT | REFERENCED_TABLE_SCHEMA | REFERENCED_TABLE_NAME | REFERENCED_COLUMN_NAME | +--------------------+-------------------+--------------------------+---------------+--------------+------------------------------+--------------+------------------+-------------------------------+-------------------------+-----------------------+------------------------+ | def         ... Read More

Retrieve Set of All Values in HashMap in Java

karthikeya Boyini
Updated on 30-Jul-2019 22:30:24

279 Views

First, create a HashMap and add elements −HashMap hm = new HashMap(); hm.put("Wallet", new Integer(700)); hm.put("Belt", new Integer(600)); hm.put("Backpack", new Integer(1200));Now, retrieve all the values −Collection getValues = hm.values(); System.out.println("Values..."); Iterator i = getValues.iterator(); while (i.hasNext()) { System.out.println(i.next()); }The following is an example to get the set of all the values in the HashMap −Example Live Demoimport java.util.*; public class Demo { public static void main(String args[]) { // Create hash map HashMap hm = new HashMap(); ... Read More

Advertisements