I\'ve got a simple Jlist with data from List, Now I want to remove selected item from Jlist. Here is the code:
List
final DefaultListMo
Assuming your index is non-negative (as mentioned by others), see if this works (in your listener):
((DefaultListModel) jList.getModel()).remove(index);
If so, then you're using using a stale model.