Here you can find the source of ToSimpleName(String str)
public static String ToSimpleName(String str)
//package com.java2s; //License from project: Open Source License public class Main { public static String ToSimpleName(String str) { String[] strs = str.split("_"); String simpleName = strs[0]; if (strs.length > 1) { simpleName = str.replaceFirst(strs[0] + "_", ""); }//from w w w .java 2 s . com return simpleName; } }