java指定路径写读文件
Posted NONE
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java指定路径写读文件相关的知识,希望对你有一定的参考价值。
package com.util; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; /** * @ClassName: IOUtill * @Description: I/O工具类 * @author 无名 * @date 2016-5-20 下午9:00:18 * @version 1.0 */ public final class IOUtill { private IOUtill(){} public static void writeByUrl(String url,String content) { File file = new File(url); if (!file.getParentFile().exists()) { file.getParentFile().mkdirs(); } try { file.createNewFile(); } catch (IOException e) { e.printStackTrace(); } try { FileWriter fw = new FileWriter(file, true); BufferedWriter bw = new BufferedWriter(fw); bw.write(content); bw.flush(); bw.close(); fw.close(); } catch (IOException e) { e.printStackTrace(); } } public static String readByUrl(String url) { File file = new File(url); if (!file.getParentFile().exists()) { file.getParentFile().mkdirs(); } String content = ""; try { FileReader fr = new FileReader(file); BufferedReader bReader = new BufferedReader(fr); content = bReader.readLine(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return content; } }
以上是关于java指定路径写读文件的主要内容,如果未能解决你的问题,请参考以下文章