Here is a simple sorting program of an ArrayList:
ArrayList list = new ArrayList();
list.add(\"1_Update\");
list.add(\"11_Add\")
As stated above, you are looking for a Comparator implementation that implements a natural sort. Jeff Atwood wrote an excellent post on natural sorting some time ago - it's well worth a read.
If you're looking for a Java implementation I have found this one to be useful: http://www.davekoelle.com/alphanum.html