In my application i should get the data from java.awt.List
, and delete the particular value form the list.How can I do it? Please give me the suggestions.
My code
import java.awt.List;
List lst=new List(15,false);
for (Entry<String, String> entry : list.entrySet()) {
String client_Name=entry.getKey();
lst.add(client_Name + "\n");//here i should get the data and delete particular data
String listName=lst.getName();
System.out.println(listName);
}