博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java中用到的一些公用方法--持续更新
阅读量:5953 次
发布时间:2019-06-19

本文共 1340 字,大约阅读时间需要 4 分钟。

1.Java下获取指定目录的所有文件名

private static void getFile(String path){   

        File file = new File(path);        // 获取路径所在的文件列表   

        File[] array = file.listFiles();   // 获取文件夹列表

        for(int i=0;i<array.length;i++){   

            if(array[i].isFile()){   

                // 只取文件名  

                System.out.println("^^^^^" + array[i].getName());   

                // 获取文件路径和名称  

                System.out.println("#####" + array[i]);   

                // 获取文件路径和名称  

                System.out.println("*****" + array[i].getPath());   

            }else if(array[i].isDirectory()){   

                getFile(array[i].getPath());   

            }   

        }   

    }    

2.Java删除指定目录下的指定文件

/**

 * 根据文件名,路径,删除指定文件

 * @param path        文件夹路径

 * @param fileName 完整的文件名

 */

private static void deleteFile(String path,String fileName){   

    File folder = new File(path);

    File[] files = folder.listFiles();

    for(File file:files){

        if(file.getName().equals(fileName)){

            file.delete();

        }

    }

}

 

3.在将jdom类型的document输出/打印/转换/解析时,会遇到中文乱码,解决方法如下

/**

     * 将XML转换成String输出(输出包装器)

     * @param xmlDoc jdom类型的document

     * @param encoding编码 UTF-8/GB2312/GBK

     * @return

     * @throws IOException

     */

    public static String toXML(Document xmlDoc, String encoding) throws IOException{

         ByteArrayOutputStream byteRep = new ByteArrayOutputStream();

         PrintWriter out=new PrintWriter(byteRep);//增加输出包装器

        Format format = Format.getPrettyFormat();

        format.setEncoding(encoding);

        XMLOutputter docWriter = new XMLOutputter(format);

        try {

            docWriter.output(xmlDoc, out);//输出到包装器中

            } catch (Exception e) {

        }

        return byteRep.toString();

    }

 

转载地址:http://vhoxx.baihongyu.com/

你可能感兴趣的文章
数论之 莫比乌斯函数
查看>>
linux下查找某个文件位置的方法
查看>>
python之MySQL学习——数据操作
查看>>
Harmonic Number (II)
查看>>
长连接、短连接、长轮询和WebSocket
查看>>
day30 模拟ssh远程执行命令
查看>>
做错的题目——给Array附加属性
查看>>
Url.Action取消字符转义
查看>>
JQuery选择器大全
查看>>
Gamma阶段第三次scrum meeting
查看>>
python3之装饰器修复技术@wraps
查看>>
[考试]20150606
查看>>
Javascript_备忘录5
查看>>
Can’t create handler inside thread that has not called Looper.prepare()
查看>>
敏捷开发方法综述
查看>>
Hadoop数据操作系统YARN全解析
查看>>
修改数据库的兼容级别
查看>>
Windows下同时安装两个版本Jdk
查看>>
uoj#228. 基础数据结构练习题(线段树)
查看>>
JS键盘事件监听
查看>>