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

nio初探

时间:2016-07-29 18:44:41      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

String info[] = {"MLDN","MLDNJAVA","www.mldn.cn","www.mldnjava.cn","李兴华","lixinghua"} ;//字符集
File file = new File("out.txt") ;
FileOutputStream output = null ;
new FileOutputStream(file) ;

FileChannel fout = output.getChannel() ; // 得到输出的通道
ByteBuffer buf = ByteBuffer.allocate(1024) ;
for(int i=0;i<info.length;i++){
buf.put(info[i].getBytes()) ; // 字符串变为字节数组放进缓冲区之中
}
buf.flip() ;
fout.write(buf) ; // 输出缓冲区的内容
fout.close() ;
output.close() ;

nio初探

标签:

原文地址:http://www.cnblogs.com/chenxuezhouLearnProgram/p/5719239.html

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