Java读取文件转换成byte[]的小结

1、FileInputStream

	/**
	 * 
	 * <p>Title: getContent</p>  
	 * <p>Description:根据文件路径读取文件转出byte[] </p>  
	 * @param filePath文件路径
	 * @return 字节数组
	 * @throws IOException
	 */
	public static byte[] getContent(String filePath) throws IOException { 
        File file = new File(filePath);  
        long fileSize = file.length();  
        if (fileSize > Integer.MAX_VALUE) {  
        	logger.info("file too big...");  
            return null;  
        }  
        FileInputStream fi = new FileInputStream(file);  
        byte[] buffer = new byte[(int) fileSize];  
        int offset = 0;  
        int numRead = 0;  
        while (offset < buffer.length  
        && (numRead = fi.read(buffer, offset, buffer.length - offset)) >= 0) {  
            offset += numRead;  
        }  
        // 确保所有数据均被读取  
        if (offset != buffer.length) {  
        	throw new IOException("Could not completely read file "  
                    + file.getName());  
        }  
        fi.close();  
        return buffer;  
    }

2、ByteArrayOutputStream和BufferedInputStream传统的IO

/**
	 * 
	 * <p>Title: toByteArray</p>  
	 * <p>Description: 传统的IO流方式</p>  
	 * @param filename
	 * @return
	 * @throws IOException
	 */
	public static byte[] toByteArray(String filename) throws IOException {
		File file = new File(filename);
		if (!file.exists()) {
			throw new FileNotFoundException(filename);
		}
		ByteArrayOutputStream bos = new ByteArrayOutputStream((int) file.length());
		BufferedInputStream in = null;
		try {
			in = new BufferedInputStream(new FileInputStream(file));
			int buf_size = 1024;
			byte[] buffer = new byte[buf_size];
			int len = 0;
			while (-1 != (len = in.read(buffer, 0, buf_size))) {
				bos.write(buffer, 0, len);
			}
			return bos.toByteArray();
		} catch (IOException e) {
			e.printStackTrace();
			throw e;
		} finally {
			try {
				bos.close();
				in.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
			bos.close();
		}
	}

3、NIO

/**
	 * 
	 * <p>Title: toByteArrayNIO</p>  
	 * <p>Description: NIO way</p>  
	 * @param filename
	 * @return
	 * @throws IOException
	 */
	public static byte[] toByteArrayNIO(String filename) throws IOException {
		File file = new File(filename);
		if (!file.exists()) {
			throw new FileNotFoundException(filename);
		}
		FileChannel channel = null;
		FileInputStream fs = null;
		try {
			fs = new FileInputStream(file);
			channel = fs.getChannel();
			ByteBuffer byteBuffer = ByteBuffer.allocate((int) channel.size());
			while (channel.read(byteBuffer) > 0) {
				// do nothing
				// System.out.println("reading");
			}
			return byteBuffer.array();
		} catch (Exception e) {
			e.printStackTrace();
			throw e;
		} finally {
			try {
				channel.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
			try {
				fs.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
	

4、RandomAccessFile和MappedByteBuffer读取大文件

/**
	 * 
	 * <p>Title: toByteArrayMapped</p>  
	 * <p>Description: 读取大文件</p>  
	 * @param filename
	 * @return
	 * @throws IOException
	 */
	 public static byte[] toByteArrayMapped(String filename) throws IOException {  

		FileChannel fc = null;
		RandomAccessFile rf=new RandomAccessFile(filename, "r");
		try {
//			fc = new RandomAccessFile(filename, "r").getChannel();
			fc = rf.getChannel();
			MappedByteBuffer mappedByteBuffer = fc.map(MapMode.READ_ONLY, 0, fc.size()).load();
			logger.info("{}", mappedByteBuffer.isLoaded());
			byte[] result = new byte[(int) fc.size()];
			if (mappedByteBuffer.remaining() > 0) {  
                // System.out.println("remain");  
				mappedByteBuffer.get(result, 0, mappedByteBuffer.remaining());  
            }
			return result; 
		}  catch (IOException e) {  
            e.printStackTrace();  
            throw e;  
        } finally {  
            try {  
            	rf.close();
                fc.close();  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  
        }  

	}

 

  • 6
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
步骤如下: 1. 定义一个类,表示需要读取的对象,该类需要实现 Serializable 接口。 2. 创建一个 FileInputStream 对象,读取文件。 3. 创建一个 ObjectInputStream 对象,用于将读取文件转换成对象。 4. 使用 ObjectInputStream 的 readObject() 方法,将文件转换成对象。 5. 关闭 FileInputStream 和 ObjectInputStream 对象。 示例代码: ```java import java.io.FileInputStream; import java.io.ObjectInputStream; public class ReadObjectFromFile { public static void main(String[] args) { try { // 1. 定义需要读取的对象类 class Person implements java.io.Serializable { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } } // 2. 创建 FileInputStream 对象,读取文件 FileInputStream fileIn = new FileInputStream("person.ser"); // 3. 创建 ObjectInputStream 对象,将文件转换成对象 ObjectInputStream in = new ObjectInputStream(fileIn); // 4. 将文件转换成对象 Person person = (Person) in.readObject(); System.out.println("Name: " + person.getName()); System.out.println("Age: " + person.getAge()); // 5. 关闭 FileInputStream 和 ObjectInputStream 对象 in.close(); fileIn.close(); } catch (Exception e) { e.printStackTrace(); } } } ``` 注意事项: 1. 需要读取的对象类必须实现 Serializable 接口。 2. FileInputStream 和 ObjectInputStream 对象都需要关闭。 3. 如果读取文件不是需要读取的对象类,将会抛出 ClassCastException 异常。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值