如何从android中的视频文件中读取字节

时间:2011-11-08 13:16:12

标签: android

我有一个问题,我想从大小为1024的sdcard中的视频中读取字节, 意味着我必须一次从文件中读取1024个字节。我能够从视频中获取字节数但我无法获得它的块,我不知道如何实现这一点。请建议我正确的解决方案。

提前致谢。

1 个答案:

答案 0 :(得分:0)

import java.io.*;

public class FileUtil {
    private final int BUFFER_SIZE = 1024;

    public void readFile(String fileName) {

        BufferedInputStream in = null;
        try {
            in = new BufferedInputStream(new FileInputStream(fileName));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return;
        }

        byte[] buffer = new byte[BUFFER_SIZE];

        try {
            int n = 0;
            while ((n = in.read(buffer, 0, BUFFER_SIZE)) > 0) {
                /* do whatever you want with buffer here */
            }
        }
        catch(Exception e) {
            e.printStackTrace();
        }
        finally { // always close input stream
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

基于http://www.xinotes.org/notes/note/648/

的代码