集册 Java实例教程 读取二进制流

读取二进制流

欢马劈雪     最近更新时间:2020-01-02 10:19:05

597
要读取二进制文件,通常使用以下类:
                                 // 来自 时 代 J a v a 公 众 号 - N o w J a v  a . c o m

import java.io.BufferedInputStream;

import java.io.DataInputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;


public class Main {

  public static void main(String[] args) throws FileNotFoundException {


    File file = new File("movies.dat");

    DataInputStream in = new 
展开阅读全文