如何读取的Java文件的字节

如何读取的Java文件的字节

本文介绍了如何读取的Java文件的字节?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从文件中读取一个字节,并把它变成一个字节数组没有字节转换为整数?怎么办


解决方案

 的FileInputStream FIS =新的FileInputStream(文件名);
字节[]字节=新字节[100]; //具有所需尺寸替换100,当然
INT偏移= 0; //该元素的东西变成字节fis.read(字节,偏移,1); // 1是多少字节读取

How do I read a byte from a file, and put it into a byte array without converting the byte to an integer?

解决方案
FileInputStream fis = new FileInputStream("your file name");
byte[] bytes = new byte[100]; // replace 100 with the desired size, of course
int offset = 0;               // which element to stuff the byte into

fis.read(bytes, offset, 1);   // the 1 is how many bytes to read

这篇关于如何读取的Java文件的字节?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 13:23