Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

there are some duplicate values in ArrayList, how U'll get
that array with out duplicate?

Answer Posted / banti

public void removeDuplicateDataFromArrayList(){
ArrayList<String> al = new ArrayList<>();
al.add("a");
al.add("b");
al.add("c");
al.add("c");
al.add("a");

HashSet<String> hs = new HashSet<>();
hs.addAll(al);
al.clear();
al.addAll(hs);
System.out.println("The ArrayList values are :"+ al);

// Or

System.out.println("ArrayList : ");
for (Object data : al) {
System.out.println(data);
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a string what operation can be performed out with the help of a string?

1037


Can we create constructor in abstract class ?

1042


How many inner classes can a class have?

1038


What are the topics in core java?

1053


Can we declare a static variable inside a method?

990


Which is better ascii or unicode?

988


Is call by reference possible in java?

951


What is immutability in java?

1067


What are the differences between heap and stack memory in java?

1045


When should I use stringbuffer?

1001


What is a method signature java?

1043


What is the difference between state-based unit testing and interaction-based unit testing?

930


Does java support function overloading, pointers, structures, unions or linked lists?

1092


Is there is any difference between a scrollbar and a scrollpane?

984


What is the difference between conversation & casting?

1036