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 读写文件
相关报道:
- 谷歌要求最高法院介入其与甲骨文的Java侵权案件2014-10-09
- 内部文件显示微软将弃用诺基亚品牌和WP标志2014-09-11
- 甲骨文:Java 8将停止对Windows XP提供支持2014-07-04
- 不离不弃的好伙伴 Opera Mini 8 for JAVA发布2014-03-14
- BitTorrent推基于P2P协议的跨设备文件同步软件 2013-07-18
本类最新
本类最热
科技视界
要闻推荐
今日视点
热点专题
新闻图片
- 新闻排行
- 评测排行