java写入txt文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java写入txt文件

java写入txt文件

 2014/5/23 0:57:18  LieutenantGeneral  程序员俱乐部  我要评论(0)
  • 摘要:Filefile=newFile("d:/Data.txt");if(!file.exists()){try{file.createNewFile();}catch(IOExceptione){e.printStackTrace();return;}}OutputStreamWriteros=null;try{os=newOutputStreamWriter(newFileOutputStream(file,true));for(Stringkey:map.keySet())
  • 标签:文件 Java
class="java" name="code">
File file = new File("d:/Data.txt");
		if (!file.exists()) {
			try {
				file.createNewFile();
			} catch (IOException e) {
				e.printStackTrace();
				return;
			}
		}
		OutputStreamWriter os = null;
		try {
			os = new OutputStreamWriter(new FileOutputStream(file, true));
			for (String key : map.keySet()) {
				String property = map.get(key);
				os.write(property);
				os.write("\t");
				os.write(key);
				os.write("\r\n");
			}
			os.write("==========");
			os.write("\r\n");
			os.flush();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				os.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
发表评论
用户名: 匿名