在指定文件夹内随机选一个文件

   /**
     *在指定文件夹内随机选一个文件
     * 
     * @return
     */
    private  String getRandomFile(String path) {
        try {
            File file = new File(path);
            File[] files = file.listFiles();
            if (files!=null&&files.length > 0) {// 
                int i = randInt(files.length - 1);
                return files[i].getName().replace(".html", "");
            } else {// 
                return "";
            }
        } catch (Exception e) {
            e.printStackTrace();
            return "";
        }

    }

你可能感兴趣的:(工具类)