java常用代码

集合排序

1
2
3
4
5
// 默认是升序
Collections.sort;

// 降序
Arrays.sort(strArray, Collections.reverseOrder());

取子数组

1
Arrays.copyOfRange(original,from,to);

file

1
2
3
4
5
6
7
8
9
10
11
12
File file = new File()

//文件名,包含后缀,但不包含路径
// /root/11.jpg 则显示 11.jpg
file.getName()

// 文件路径 完整的绝对路径
// /root/11.jpg 则显示 /root/11.jpg
file.getPath()

// 重命名 newPath新目标文件绝对路径
file.renameTo(new File(newPath));