首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

IO(2)

2012-10-16 
IO(二)代码例子:package com.testimport java.io.FileOutputStreamimport java.io.IOExceptionimport j

IO(二)
代码例子:

package com.test;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;public class OutputStreamTest{public static void main(String[] args) throws IOException{OutputStream os =new FileOutputStream("C:/hello.txt");String str = "hello world";byte[] buffer = str.getBytes();os.write(buffer);os.close();}}

帅哥,你过奖了

热点排行