码迷,mamicode.com
首页 > 其他好文 > 详细

IO编程__字节流__输出

时间:2017-10-06 23:16:01      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:close   int   test   import   todo   pack   nbsp   auto   bytes   

 

一、代码如下

package www.tainiu.wenjian;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class ac__FileZjlOut__V1 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		//File f= new File("d:\\Test.txt");
		FileOutputStream fos= null;
		
		try {
			//fos= new FileOutputStream(f);
			fos= new FileOutputStream("d:\\Test.txt");
			String s= "kkljl\r\n";
			String s1= "中dd国好";
			fos.write(s.getBytes());
			fos.write(s1.getBytes());
			
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {
			try {fos.close();} catch (IOException e) {e.printStackTrace();}
		}

	}

}

 

IO编程__字节流__输出

标签:close   int   test   import   todo   pack   nbsp   auto   bytes   

原文地址:http://www.cnblogs.com/wujianbo123/p/7633128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!