/*
Remove An Item From a List Example
This java example shows how to remove an item from a list
using remove method of AWT List class.
*/
import java.applet.Applet;
import java.awt.List;
/*
<applet code="RemoveItemFromAList" width=200 height=200>
</applet>
*/
public class RemoveItemFromAList extends Applet{
public void init(){
//create a list
List list = new List(5, true);
//add items to a list
list.add("One");
list.add("Two");
list.add("Three");
list.add("Four");
list.add("Five");
list.add("Six");
list.add("Seven");
//add list
add(list);
/*
* To remove an item at from the list, use
* void remove(int index)
* method.
*/
list.remove(2);
}
}
Example Output

Bookmark/Search this post with: