write a program to remove the element from hashset using keyboard.

write a program to remove the element from hashset using keyboard.

write a program to remove the element from hashset using keyboard.

View Answers

February 5, 2011 at 2:59 PM

Java remove element from HashSet

The given code allow the user to add and delete element of their choice using HashSet.

import java.util.*;

public class HashSetExample {
  public static void main(String [] args) {   
   Scanner input=new Scanner(System.in);
   System.out.println("Enter elements: ");
    HashSet <String>set = new HashSet <String>();
    for(int i=1;i<=5;i++){
    String st=input.next();
    set.add(st);    
    }
    System.out.print("Which element do you want to remove: ");
    String element=input.next();
    set.remove(element);
    System.out.println("Hash Set data: ");  
    Iterator iterator = set.iterator();     
    while (iterator.hasNext()){
      System.out.println(iterator.next());  
    }
     }
}









Related Tutorials/Questions & Answers:
write a program to remove the element from hashset using keyboard.
write a program to remove the element from hashset using keyboard.  write a program to remove the element from hashset using keyboard
How to remove specific element from Hashset.
How to remove specific element from Hashset. In this  exmple, you will see how to remove specific element from hashset. The HashSet class provides a method called remove. It removes a elements from set. Code: 
Advertisements
How to remove all element from Hashset.
How to remove all element from Hashset. HashSet is set type Collection...; it .In this example, you will see the use of clear method of HashSet. It is used to remove all element of hashset. Code:  HashSetRemoveElement.java
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an arraylist with string(add,remove) operation.and value should be enter through
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an arraylist with string(add,remove) operation.and value should be enter through
remove element from stack
remove element from stack  Hi there I'm looking around on the internet how to remove names from stack by asking user how many names they want... error message and if not then remove the names from stack until the stack is empty
write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )
write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )  write aprogram which shows the use of hashset and iterator (through enter the value through keyboard
Remove Element from XML Document
Remove Element from XML Document       In this section, you will learn to remove any element from a given  XML document. Whenever you remove the xml element from the xml document
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
write a program to create an arraylist and listeterator.and value should be enter through keyboard.
write a program to create an arraylist and listeterator.and value should be enter through keyboard.  write a program to create an arraylist and listeterator.and value should be enter through keyboard
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
write a program to create an arraylist and listeterator.and value should be enter through keyboard.
write a program to create an arraylist and listeterator.and value should be enter through keyboard.  write a program to create an arraylist and listeterator.and value should be enter through keyboard
write a java pogram to add elements to linked list using keyboard and display it
write a java pogram to add elements to linked list using keyboard and display it  write a java pogram to add elements to linked list using keyboard and display
Write a program to print using for loop
Write a program to print using for loop  Write a program to print using for loop * * * *  
program for HashSet - Java Beginners
program for HashSet  I need a program that illustratest the concept of HashSet. can u please suggest me a way out.  Hi friend, A set is a collection interface. It is connot contain any dublicate element. The Set
remove parent element JavaScript
remove parent element JavaScript  How to remove parent element in JavaScript
remove duplicates from list in java using set
remove duplicates from list in java using set  Hi, I have a list... this? Tell me program for the removal of duplicates from list in java using set... duplicates from list in java using set: import java.util.Arrays; import java.util.List
how to write a program to search a record using mvc2
how to write a program to search a record using mvc2   how can we write a code to search a record in table by using java bean as model, servlet as contoller and jsp as view
program to display frequency count of each word in a file using Hashmap, Hashset and streamtokenizer.plz help me out ..
program to display frequency count of each word in a file using Hashmap...; Program : by HashSet and StringTokenizer import java.io.BufferedReader... the search words from console and stored in HashSet HashSet<String> hSet
JDOM Element Example, How to remove child of an element from xml file in java.
JDOM Element Example, How to remove child of an element from xml file in java. In this tutorial, we will see how to remove child of an element from xml file...(...) method remove child    element of given name from existing
write program have product - using loops
write program have product - using loops  Write a program for a grocery that reads products data and determine and display the product that has...), name (String) and price (double). Your program should continue reading new
JavaScript Remove Element
; In this section, you will learn how to remove HTML element using JavaScript. JavaScript provides several methods which allow the user to remove particular HTML element... JavaScript Remove Element
Write a java program to display the season given the month using switch case
Write a java program to display the season given the month using switch case  Write a java program to display the season given the month using switch case
Need to remove duplicated rows from excel using apache POI API
Need to remove duplicated rows from excel using apache POI API  Hi... duplicated rows from excel sheet by using apache poi api oe jxl api... duplicated rows from excel. same as below i need to do by using apache POI
remove item from list box using java script - Java Beginners
remove item from list box using java script  remove item from list box using java script  Hi friend, Code to remove list box item using java script : Add or Remove Options in Javascript function addItem
write a program in java to read a text file and write the output to an excel file using filereader and filewriter?
write a program in java to read a text file and write the output to an excel file using filereader and filewriter?  write a program in java to read a text file and write the output to an excel file using filereader and filewriter
how to write to java program to get the particular data from the website
how to write to java program to get the particular data from the website   i have to get the particular data by selecting the just numbers.. from the site .. how to get the ful details from the website by clicking the number
write a program
write a program  write a program add 2 no.s without use arithmetic,unary operaters in java
JDOM Element Example, How to add and remove child from xml file.
JDOM Element Example, How to add and remove child from xml file. In this tutorial, we will see how to add and remove child node in an xml Document tree... a child Element. The addContent(Content child) method of Element class adds
Example of HashSet class in java
to remove specific element from Hashset. How to remove all element from Hashset...Example of HashSet class in java. In this part of tutorial, we will introduce you to about the HashSet class.  It is collection. It stores only
HashSet In Java
(Object o) This method is used to remove the given element from the set... allows to insert the null element. HashSet is not thread safe i.e. in multiple..._TO_REPLACE_1 Create An Object Of HashSet Object of HashSet can be created using
How to Retrieve Data from the database and write into excel file using Java
How to Retrieve Data from the database and write into excel file using Java  Hi, I am trying to develop an small application where i trying to retrieve Data from the database and store the details in excel file. Please can
How to access the "Add/Remove Programs" list in Control Panel using Java Program? - Java Beginners
How to access the "Add/Remove Programs" list in Control Panel using Java Program?  Dear Sir, I'm very interested in creating java programs innovatively. I've planned to write a java coding for accessing the Add/Remove
Find Array element from index using GUI
Find Array element from index using GUI In this tutorial, you will learn how to create an GUI application to find an array element from its index... to display the element at that specific index. A button 'Show Element'
How To Remove Array Element In Java
How To Remove Array Element In Java In this section we will discuss about how to remove a given array element. In this section we will discuss about removing an integer array element. We will discuss about to remove a specific position
write a java program for inserting a substring in to the given main string from a given position
write a java program for inserting a substring in to the given main string from a given position  write a java program for inserting a substring in to the given main string from a given position
JavaScript Array Remove Element
JavaScript Array Remove Element In this example we will describe JavaScript Array Remove Element. First of all we have created an array list and store... Function. In this example we have used remove() method to remove element
Collection : HashSet Example
the element from the HashSet if it is presented otherwise returns false. size... element to the HashSet if it is not already present in set. clear() - Its.... It returns true if the specified element is presented in HashSet otherwise
Write a program using JSP that enables any student to change his/her address.
Write a program using JSP that enables any student to change his/her address.  Write a program using JSP that enables any student to change his/her address
write a java program
write a java program  write a program to print '*' in a circular form
Need to remove duplicate rows from the Excel Sheet using the Apache POI API
Need to remove duplicate rows from the Excel Sheet using the Apache POI API   Hi There, Is any one aware of java code on how to find the duplicate rows in excel.I am using the Apache POI API to achieve the same have googled
JDOM Element Example, How to remove attribute of xml element in java.
name) The removeAttribute(...) method remove attribute from existing element... JDOM Element Example, How to remove attribute of xml element in java. In this tutorial, we will see how to remove attribute of xml element in java
remove a substring from a string
remove a substring from a string  Please I jave an arraylist composed as follwoing [w1, w2, w3, w4, w1.w2.w3, w2.w3.w4, w3.w4, w2.w4, w1.w3, w1.w2] w2.w4 is a subset of w2.w3.w4 ?how I recognize it also ADS_TO_REPLACE_1 w1.w3
Connect a linux machine from linux using java program without password
Connect a linux machine from linux using java program without password  Connect a linux machine from linux using java program without password. Can anyone help me
set the focus on an element using Javascript
set the focus on an element using Javascript  How to set the focus on an element using Javascript
How to write Java Program
How to write Java Program  how to write a program to find average of 5 student marks
Write a method which will remove any given character from a string?
Write a method which will remove any given character from a string? In this example we will describe remove any given character from a string... sequence.ADS_TO_REPLACE_1 Example of remove any given character from a string
how to delete a jar file from mobile by using j2me program.
how to delete a jar file from mobile by using j2me program.  When i'll update a new version jar in mobile. Then i want to delete that old jar which is previously present in mobile. How to do

Ads