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();
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流把一个文件(SQLite数据库文件)复制到另一个位置