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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java怎么使用io流读取一个文件夹里面相关的知识,希望对你有一定的参考价值。

    使用工具类Properties

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

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

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

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

    输出流并保存文件

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


    完成

    具体实例代码

    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();
        

参考技术A 可以通过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流会一直存在,直到程序运行结束。本回答被提问者和网友采纳

以上是关于java怎么使用io流读取一个文件夹里面的主要内容,如果未能解决你的问题,请参考以下文章

java中IO流

java io读取文件时 数据中有连续多个空格怎么处理

java怎么用IO流把一个文件(SQLite数据库文件)复制到另一个位置

java io读取文件时 数据中有连续多个空格怎么处理 急急急急!!!

java怎么读取Zip和RAR里面的文件啊?

为啥java 用IO流读docx文件里的内容打印在控制台是乱码