首页 > 应用软件 > 软件教程 > 编程开发 > 正文

java 读写文件
2011-08-10 14:55      我要评论()
字号:T|T

File("e:/1.xml", content);

//System.out.println(sb);

} catch (Exception e)

{

e.printStackTrace();

}

} else

{

System.out.println("文件不存在!");

}

}

public static void writeFile(String filePathAndName, String fileContent)

{

try

{

File f = new File(filePathAndName);

if (!f.exists())

{

f.createNewFile();

}

OutputStreamWriter write = new OutputStreamWriter(

new FileOutputStream(f), "UTF-8");

BufferedWriter writer = new BufferedWriter(write);

writer.write(fileContent);

writer.close();

}

catch (Exception e)

{

System.out.println("写文件内容操作出错");

e.printStackTrace();

}

}

java 读写文件

新闻热线:010-68947455

关键词: 文件 java

责任编辑:lujq

我要评论

已有位网友参与评论

本类最热

科技视界

网站地图

牛华网

华军下载 | 牛华网 | 盒子 | pcsoft | 论坛

实用工具

关于我们 | 新闻投稿 | 软件发布 | 版权声明 | 意见建议 | 网站地图 | 友情连接 | RSS订阅 | 总编信箱 | 诚聘英才 | 联系我们

苏ICP备11016551号-2  苏公网安备 32132202000111号 本站特聘法律顾问:于国富律师

Copyright (C) 1997-2012 newhua.com 牛华网 版权所有