码迷,mamicode.com
首页 > 其他好文 > 详细

文件读写&文件夹遍历

时间:2015-04-25 22:54:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:文件读写   文件夹遍历   



文件读写

 

读文件()

	private void readFile(File file) throws IOException {
		FileInputStream stream = null;
		stream = new FileInputStream(file);

		DataInputStream sysin = new DataInputStream(stream);
		String line = null;

		while ((line = sysin.readLine()) != null) {
			if (line.trim().equals("")) {
				continue;
			}
			System.out.println(line);
		}
	}


写文件

public void write(String filePath) throws IOException {
		File file = new File(filePath);
		if (!file.exists())
			file.createNewFile();
		FileOutputStream out = new FileOutputStream(file, false);
		String data = "aa\nbb";
		out.write(data.toString().getBytes("utf-8"));
		ParsePclntResult obj = new ParsePclntResult();
	}

递归删除指定文件夹下的文件(遍历文件)

private void cleanupRecursive(File file) {
		try {
			if (file.isDirectory()) {

				for (File child : file.listFiles()) {
					cleanupRecursive(child);
				}
				if (file.listFiles().length == 0) {
					file.delete();
				}
			} else {

				if (file.getName().endsWith(".xls")) {
					file.delete();
				}
			}
		} catch (Exception e) {
			System.out.println(e.getMessage() + "\nFile:" + file.getAbsolutePath());
		}

	}






文件读写&文件夹遍历

标签:文件读写   文件夹遍历   

原文地址:http://blog.csdn.net/tiankefeng19850520/article/details/45274139

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!