摘要:
public class LaunchPath { private static boolean endsWith(String fileName, String extension) { return (extension == null) || fileName == null || (fileName.toLowerCase().endsWith(extension.toLowerCase())); } public static String[] listFileNames(String dir, String extension) { String str... 阅读全文
posted @ 2013-03-27 23:55
SmartAnyWhere
阅读(300)
评论(0)
推荐(0)
浙公网安备 33010602011771号