码迷,mamicode.com
首页 > 编程语言 > 详细

java指定路径写、读文件

时间:2016-05-20 23:54:27      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

 

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指定路径写、读文件

标签:

原文地址:http://www.cnblogs.com/rixiang/p/5513597.html

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