java怎么使用io流读取一个文件夹里面

 我来答
憨憨forver
2016-09-23 · TA获得超过201个赞
知道小有建树答主
回答量:211
采纳率:0%
帮助的人:55.5万
展开全部
  1. 使用工具类Properties

  2. 工具类有Load()方法 用于加载文件

  3. 首先将文件写成流(输入)

    File file=new  File(confPath);
                in = new FileInputStream(file);  

  4. 加载流load(in)如果需要操作则完成具体操作

  5. 输出流并保存文件

    out2 = new OutputStreamWriter(new FileOutputStream(confPath),"GBK");
                cp.store(out2);


    完成

  6. 具体实例代码

    public String updateConfParam(ConfParam cpl) throws IOException {

            String error = null;
            Properties cp=new Properties();
            InputStream in= null;
            OutputStreamWriter out1=null;
            OutputStreamWriter out2=null;
            JSONObject jObj = new JSONObject();
            try {
                String confPath=validateSystem(cpl.getConfAddress()+"/"+cpl.getConfName());
                File file=new  File(confPath);
                in = new FileInputStream(file);   
                cp.load(in);
                out1=new OutputStreamWriter(new FileOutputStream(confPath+".bak"),"GBK");
                cp.store(out1);
                cpl.setParaOldValue(cp.getProperty(cpl.getParaKey()));
                cp.setProperty(cpl.getParaKey(), cpl.getParaValue());    
                out2 = new OutputStreamWriter(new FileOutputStream(confPath),"GBK");
                cp.store(out2);

                jObj.put("paraOldValue", cpl.getParaOldValue());
                jObj.put("paraValue", cpl.getParaValue());
            } catch (FileNotFoundException e) {
                error=e.getMessage();
            } catch (IOException e1) {
                error = e1.getMessage();
            }
            finally{
                if(in !=null){
                    in.close();
                }
                if(out1 !=null){
                    out1.close();
                }
                if(out2 !=null){
                    out2.close();
                }
                if(error != null){
                    jObj.put("error", error);
                }
            }
            return jObj.toString();
        }

育知同创教育
2016-08-16 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部
可以通过BufferedReader 流的形式进行流读取,之后通过readLine方法获取到读取的内容。
BufferedReader bre = null;
try {
String file = "D:/test/test.txt";
bre = new BufferedReader(new FileReader(file));//此时获取到的bre就是整个文件的缓存流
while ((str = bre.readLine())!= null) // 判断最后一行不存在,为空结束循环
{
System.out.println(str);//原样输出读到的内容
};
备注: 流用完之后必须close掉,如上面的就应该是:bre.close(),否则bre流会一直存在,直到程序运行结束。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式