String[] v={"9","4","5","9' "};
Arrays.sort(v);
for (int i = 0; i < v.length; i++) {
System.out.println(v[i]);
}为什么9排在前面9' 排在后面