簡體   English   中英

Java讀入字節數組

[英]Java read into byte array

我有一個.txt文件,由1和0組成,就像這樣;

11111100000001010000000101110010
11111100000001100000000101110010
00000000101001100010000000100000

我希望能夠讀取8(1和0)並將每個“字節”放入字節數組。 因此,一行將是4個字節;

11111100 00000101 00000001 01110010 --> 4 bytes, line 1
11111100 00000110 00000001 01110010 --> 8 bytes, line 2
00000000 10100110 00100000 00100000 --> total 12 bytes, line 3
                ...
and so on.

我相信我需要將數據存儲在二進制文件中,但是我不確定如何執行此操作。 任何幫助是極大的贊賞。

編輯1:

我想將8個1和0(11111100,00000101)放入一個字節並存儲在字節數組中,這樣11111100將是數組中的第一個字節,00000101是第二個字節,依此類推。 我希望這更清楚。

編輯2:

fileopen = new JFileChooser(System.getProperty("user.dir") + "/Example programs"); // open file from current directory
        filter = new FileNameExtensionFilter(".txt", "txt");
        fileopen.addChoosableFileFilter(filter);

        if (fileopen.showOpenDialog(null)== JFileChooser.APPROVE_OPTION) 
        {
            try
            {
                file = fileopen.getSelectedFile();

                //create FileInputStream object
                FileInputStream fin = new FileInputStream(file);

                byte[] fileContent = new byte[(int)file.length()];

                fin.read(fileContent);

                for(int i = 0; i < fileContent.length; i++)
                {
                    System.out.println("bit " + i + "= " + fileContent[i]);
                }

                //create string from byte array
                String strFileContent = new String(fileContent);
                System.out.println("File content : ");
                System.out.println(strFileContent);                      

            }
            catch(FileNotFoundException e){}
            catch(IOException e){}
        }

這是一種方法,在代碼中帶有注釋:

import java.lang.*;
import java.io.*;
import java.util.*;

public class Mkt {
  public static void main(String[] args) throws Exception {
    BufferedReader br = new BufferedReader(new FileReader("in.txt"));
    List<Byte> bytesList = new ArrayList<Byte>();

    // Read line by line
    for(String line = br.readLine(); line != null; line = br.readLine()) {
      // 4 byte representations per line
      for(int i = 0; i < 4; i++) {
        // Get each of the 4 bytes (i.e. 8 characters representing the byte)
        String part = line.substring(i * 8, (i + 1) * 8);
        // Parse that into the binary representation
        // Integer.parseInt is used as byte in Java is signed (-128 to 127)
        byte currByte = (byte)Integer.parseInt(part, 2);
        bytesList.add(currByte);
      }
    }

    Byte[] byteArray = bytesList.toArray(new Byte[]{});

    // Just print for test
    for(byte currByte: byteArray) {
      System.out.println(currByte);
    }
  }
}

輸入是從名為in.txt文件中讀取的。 這是一個示例運行:

$ javac Mkt.java && java Mkt
-4
5
1
114
-4
6
1
114
0
-90
32
32

希望這可以幫助您入門,可以調整自己的需求。

使用BufferedReader讀取txt文件。

BufferedReader in = new BufferedReader(...);
ArrayList<byte> bytes = new ArrayList<byte>();
ArrayList<char> buffer = new ArrayList<char>();
int c = 0;
while((c = in.read()) >= 0) {
    if(c == '1' || c == '0') buffer.add((char)c);
    if(buffer.size() == 8) {
        bytes.add(convertToByte(buffer));
        buffer.clear();
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM