Java - 将文本分成n个字节的块

时间:2015-03-19 00:40:34

标签: java parsing

所以我有点困在一个程序,我必须读取一个文本文件,使用FileInputStream并将该文本分成n个字节的块。我必须发出一个System.out.write();呼吁每个块,所以我想知道是否有一个简单的方法来做到这一点。谢谢!

package test;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.*;
import java.io.*;
import java.util.Scanner;


public class Test {

public static void main(String[] args) {

    int size=0;

    FileInputStream fstream = null;
    Scanner console = new Scanner(System.in);
    String inputFile = console.next();

    System.out.println("Chunk size?");
    Scanner in = new Scanner(System.in);
    size = in.nextInt();

    try {
        fstream = new FileInputStream(inputFile);

        System.out.println("Size in bytes : "
                + fstream.available());

        int content;

        while ((content = fstream.read()) != -1) {
            //System.out.write(); for every chunk of *size* bytes

        }

    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (fstream != null)
                fstream.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
 }
}

1 个答案:

答案 0 :(得分:0)

  1. 使用

    byte [] bytes = new byte [size];

    int byteCount;

    while((byteCount = fstream.read(bytes))!= -1)     ...

  2. 你可以这样简单地创建一个字符串:

    new String(bytearray);

  3. PS。因为某些原因而无法正常工作......