标题:[分享]简单的文件通道和缓冲区应用,为刚学文件的朋友提供帮助。
只看楼主
private
Rank: 1
等 级:新手上路
帖 子:110
专家分:0
注 册:2006-5-1
 问题点数:0 回复次数:2 
[分享]简单的文件通道和缓冲区应用,为刚学文件的朋友提供帮助。
简单的文件通道和缓冲区应用例子,为刚学文件的朋友提供帮助。
import java.io.*;
import java.nio.*;
import java.nio.channels.*;

public class FileChannelTest{
private FileChannel fileChannel; //文件通道

public FileChannelTest()
{
try{
RandomAccessFile file = new RandomAccessFile( "Test","rw" );//随机文件
fileChannel = file.getChannel(); //得到通道
}
catch( IOException e )
{
e.printStackTrace();
}
}
public void writeToFile() throws IOException
{
ByteBuffer buffer = ByteBuffer.allocate( 14 );//字节缓冲区 大小定为 14

buffer.putInt( 100 ); //向缓冲区写 整型
buffer.putChar( 'A' ); //向缓冲区写 字符
buffer.putDouble( 12.34 );//向缓冲区写 双精度

buffer.flip(); //设定极限,并把位置定为0
fileChannel.write( buffer );//把缓冲区写到文件通道中
}
public void readFromFile() throws IOException
{
String content = "";

ByteBuffer buffer = ByteBuffer.allocate( 14 );

fileChannel.position( 0 );//将文件通道位置定为0
fileChannel.read( buffer );//把文件通道数据读到 缓冲区中

buffer.flip();//设定极限,并把位置定为0

content += buffer.getInt() + "," +buffer.getChar() + ","+ //在缓冲区中得到数据
buffer.getDouble();

System.out.println( "File contains: " + content );

fileChannel.close(); //关闭文件通道
}
public static void main( String [] args ) //执行
{
FileChannelTest application = new FileChannelTest();

try{
application.writeToFile();
application.readFromFile();
}
catch( IOException e )
{
e.printStackTrace();
}
}

}
搜索更多相关主题的帖子: 文件通道 缓冲区 import java 
2006-06-25 15:07
闯城狼
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-3-27
得分:0 
谢谢你!
2006-06-25 17:02
大嘴先生2
Rank: 1
等 级:新手上路
威 望:2
帖 子:815
专家分:0
注 册:2006-4-17
得分:0 
老贴也不错啊

骑白马的未必是王子,也可能是唐僧;有翅膀的未必是天使,也可能是鸟人。
2007-05-08 13:56



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-74705-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.188093 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved