java 把文件转化为字节数组_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 把文件转化为字节数组

java 把文件转化为字节数组

 2013/7/20 18:56:53  hw1287789687  程序员俱乐部  我要评论(0)
  • 摘要:java中如何把文件(file)转化字节数组呢?方式一:/***文件转换为二进制数组**@paramfile文件对象*@return*@throwsIOException*/publicstaticbyte[]fileTobytes(finalFilefile)throwsIOException{byte[]data=null;if(file.exists()){FileInputStreamfileInputStream=newFileInputStream(file)
  • 标签:文件 数组 Java

java 中如何把文件(file)转化字节数组呢?

方式一:

class="java"> /**
     * 文件转换为二进制数组
     *
     * @param file 文件对象
     * @return
     * @throws IOException
     */
    public static byte[] fileTobytes(final File file) throws IOException {
        byte[] data = null;
        if (file.exists()) {
            FileInputStream fileInputStream = new FileInputStream(file);
            int length = fileInputStream.available();
            data = new byte[length];
            fileInputStream.read(data);
            fileInputStream.close();
        }
        return data;
    }

?方式二:

/***
	 * read file ,convert file to byte array
	 * 
	 * @param file
	 * @return
	 * @throws IOException
	 */
	public static byte[] readBytes4file(File file) throws IOException{
		BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));        
        ByteArrayOutputStream out = new ByteArrayOutputStream(1024);        
       
//        System.out.println("Available bytes:" + in.available());        
       
        byte[] temp = new byte[1024];        
        int size = 0;        
        while ((size = in.read(temp)) != -1) {        
            out.write(temp, 0, size);        
        }        
        in.close();        
       
        byte[] content = out.toByteArray();
        return content;
	}

?

发表评论
用户名: 匿名