java怎么用read()每次读文件中的四个字节保存在数组中

 我来答
小傻

推荐于2017-10-13 · 知道合伙人软件行家
小傻
知道合伙人软件行家
采纳数:11567 获赞数:31134
已经做过两个上架的app和两个网页项目.

向TA提问 私信TA
展开全部

java使用read()方法进行读文件中的四个字节保存在数组总的示例如下:


public static void main(String[] arg) throws Exception {
BufferedReader reader = new BufferedReader(new FileReader("E:/test.txt"));
int[] list = new int[20];
int i = 0;
String line = null;
while ((line = reader.readLine()) != null) {
String[] vStrs = line.split(" ");
for (String str : vStrs) {
list[i++] = Integer.parseInt(str);
}
}
System.out.println(Arrays.toString(list));
}
jin_149
2012-03-24 · 超过11用户采纳过TA的回答
知道答主
回答量:30
采纳率:100%
帮助的人:29.4万
展开全部
File file = new File(fileName);
try {
BufferedInputStream bufferInput = new BufferedInputStream(new FileInputStream(file));
char[] ch = new char[4];
int i = 0;
while ((ch[i] = bufferInput.read())!=-1) {
i++;
if(i == 4){ //当有四个字节保存在数组中则输出
i = 0;
System.out.println(ch);//你也可以把 ch 转成String 再赋给你创建的数组。
}
}
bufferInput.close();
} catch (Exception e) {
e.printStackTrace();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
勤苦且恬静的福祉S
推荐于2017-09-16 · TA获得超过144个赞
知道小有建树答主
回答量:468
采纳率:0%
帮助的人:173万
展开全部
//创建文件流对象
File f = new File("E:\\a.txt");

//创建读取流对象
FileReader fr = new FileReader(f);
//创建加速器
BufferedReader bfr = new BufferedReader(fr);

String str="";
//循环读取
while(str !=null){
//行读取
str = bfr.readLine();
System.out.println(str);
}

//字节流取文件
File f = new File("E:\\a.txt");
//创建读取流对象
FileInputStream fin = new FileInputStream(f);

byte b[] = new byte[1024];

int count =0;

while((count = fin.read(b))>0){

System.out.println(count);
//字符转换 string 和 byte
String s = new String(b,0,count);
System.out.println(s);

}
fin.close();
///例子
package com.lilina.aa;

public class Eg1 {
public static void main(String[] args) throws Exception {

//文字流

//创建对象
FileInputStream fl = new FileInputStream("e:\\Hydrangeas.jpg");
FileOutputStream fo = new FileOutputStream("c:\\Hydrangeas.jpg");
int count=0;
byte b[]=new byte[1024];
//循环读取
while((count=fl.read(b))>0){

fo.write(b, 0, count);

}
//关闭
fl.close();
fo.close();
}
}
追问

我现在要新建一个自己的数组来保存读取的数据,这些数据是每四个字节一个数据的,请问我该怎么读取和保存在我自己的数组中,。。。。。。。急人啊。。。。谢谢。

追答
边读边写进文件 再循环的时候
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
icosplay
2012-03-24 · TA获得超过248个赞
知道小有建树答主
回答量:272
采纳率:0%
帮助的人:148万
展开全部
File file = new File(fileName);
try {
BufferedInputStream bufferInput = new BufferedInputStream(new FileInputStream(file));
int temp = 0;
while ((temp=bufferInput.read())!=-1) {
System.out.print(temp);
}
bufferInput.close();
} catch (Exception e) {
e.printStackTrace();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
oskycool
2012-04-06
知道答主
回答量:26
采纳率:0%
帮助的人:14万
展开全部
//缓冲
byte[] data = new byte[4];
//读取
int len = read(data);
while(len==4){
len = read(data);
//其他处理
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式