java中如何把一个文件转化为byte数组

Filefile=newFile("E:/girl.png");我该如何把这个得到这个file的byte数组... File file = new File("E:/girl.png");
我该如何把这个得到这个file的byte数组
展开
 我来答
小傻

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

向TA提问 私信TA
展开全部

java将文件转换为byte数组,主要是使用输出流,实例如下:

/** 
     * 根据byte数组,生成文件 
     */  
    public static void getFile(byte[] bfile, String filePath,String fileName) {  
        BufferedOutputStream bos = null;  //新建一个输出流
        FileOutputStream fos = null;  //w文件包装输出流
        File file = null;  
        try {  
            File dir = new File(filePath);  
            if(!dir.exists()&&dir.isDirectory()){//判断文件目录是否存在  
                dir.mkdirs();  
            }  
            file = new File(filePath+"\\"+fileName);  //新建一个file类
            fos = new FileOutputStream(file);  
            bos = new BufferedOutputStream(fos);  //输出的byte文件
            bos.write(bfile);  
        } catch (Exception e) {  
            e.printStackTrace();  
        } finally {  
            if (bos != null) {  
                try {  
                    bos.close();  //关闭资源
                } catch (IOException e1) {  
                    e1.printStackTrace();  
                }  
            }  
            if (fos != null) {  
                try {  
                    fos.close();  //关闭资源
                } catch (IOException e1) {  
                    e1.printStackTrace();  
                }  
            }  
        }  
    }
aurawing
推荐于2018-07-09 · TA获得超过222个赞
知道答主
回答量:63
采纳率:0%
帮助的人:59.1万
展开全部
import java.io.File;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.InputStream;

public class Test {

public static void main(String[] args) {

// TODO Auto-generated method stub

try{

getBytesFromFile(new File("C:\\aaa.txt"));

}catch(IOException e){

System.out.println("IOException");

}

}

// 返回一个byte数组

public static byte[] getBytesFromFile(File file) throws IOException {

InputStream is = new FileInputStream(file);

// 获取文件大小

long length = file.length();

if (length > Integer.MAX_VALUE) {

// 文件太大,无法读取

throw new IOException("File is to large "+file.getName());

}

// 创建一个数据来保存文件数据

byte[] bytes = new byte[(int)length];

// 读取数据到byte数组中

int offset = 0;

int numRead = 0;

while (offset < bytes.length

&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {

offset += numRead;

}

// 确保所有数据均被读取

if (offset < bytes.length) {

throw new IOException("Could not completely read file "+file.getName());

}

// Close the input stream and return bytes

is.close();

return bytes;

}

}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帐号已注销
2019-05-23
知道答主
回答量:3
采纳率:0%
帮助的人:2071
展开全部
/**
* 获得指定文件的byte数组
*/
public byte[] getBytes(String filePath){
byte[] buffer = null;
try {
File file = new File(filePath);
FileInputStream fis = new FileInputStream(file);
ByteArrayOutputStream bos = new ByteArrayOutputStream(1024);
byte[] b = new byte[1024];
int n;
while ((n = fis.read(b)) != -1) {
bos.write(b, 0, n);
}

fis.close();
bos.close();
buffer = bos.toByteArray();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return buffer;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2018-03-22
引用你好邱林和的回答:
java将文件转换为byte数组,主要是使用输出流,实例如下:
/** * 根据byte数组,生成文件 */ public static void getFile(byte[] bfile, String filePath,String fileName) { BufferedOutputStream bos = null; //新建一个输出流 FileOutputStream fos = null; //w文件包装输出流 File file = null; try { File dir = new File(filePath); if(!dir.exists()&&dir.isDirectory()){//判断文件目录是否存在 dir.mkdirs(); } file = new File(filePath+"\\"+fileName); //新建一个file类 fos = new FileOutputStream(file); bos = new BufferedOutputStream(fos); //输出的byte文件 bos.write(bfile); } catch (Exception e) { e.printStackTrace(); } finally { if (bos != null) { try { bos.close(); //关闭资源 } catch (IOException e1) { e1.printStackTrace(); } } if (fos != null) { try { fos.close(); //关闭资源 } catch (IOException e1) { e1.printStackTrace(); } } } }
展开全部
答非所问 真服气这种人
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式