从路径中获取文件名
String getNameInPath(String path) { List<String> list = path.split("/"); return list[list.length - 1]; }