如何在不跳过 Java 中的零的情况下读写字节

How to read and write Bytes without skipping the zeros in Java

有谁知道如何在不跳过零的情况下输入或输出字节 我正在尝试编写一个将整数数组导出为无符号短裤的程序。 我已经编写了写入和读取 wave 文件的代码,但它们的格式不正确。

阅读范例

        // dwChunkSize
        byteConvertedLong = extractBytes(4);
        dwFormatChunkSize = convertBytesToLong(byteConvertedLong);
        System.out.println("Format Chunk size: " + dwFormatChunkSize);
        // wFormatTag
        byteConvertedInt = extractBytes(2);
        System.out.println("Format Tag: " + convertBytesToInt(byteConvertedInt));

读取数据的函数:

    // convert byte to long
    public long convertBytesToLong(byte[] values) {
        byte[] spliceToArray = {0, 0, 0, 0, 
            values[0], values[1], values[2], values[3]};
        ByteBuffer debuffer = ByteBuffer.wrap(spliceToArray);
        long returnValue = (long)debuffer.getLong();
        return returnValue;
    }

    // convert byte to int
    public int convertBytesToInt(byte[] values) {
        byte[] spliceToArray = {0, 0, values[0], values[1]};
        ByteBuffer debuffer = ByteBuffer.wrap(spliceToArray);
        int returnValue = debuffer.getInt();
        return returnValue;
    }

    // extract bytes to DataOutputStream
    public byte[] extractBytes(int bytesToExtract)
            throws IOException {

        // define byte array
        byte[] extractedBytes = new byte[bytesToExtract];

        // extract bytes
        dis.read(extractedBytes, byteTracker, bytesToExtract);

        return extractedBytes;
    }

写例子

// dwChunkSize
        byteConvertedLong = convertLongToBytes(dwFormatChunkSize);
        appendBytes(byteConvertedLong, 4, 8);
        // wFormatTag
        byteConvertedInt = convertIntToByte(W_FORMAT_TAG);
        appendBytes(byteConvertedInt, 2, 4);

书写功能;

// convert long to byte
    public byte[] convertLongToBytes(long value) {
        ByteBuffer buffer = ByteBuffer.allocate(8);
        buffer.putLong(value);
        return buffer.array();
    }

    // convert int to byte
    public byte[] convertIntToByte(int value) {
        ByteBuffer buffer = ByteBuffer.allocate(4);
        buffer.putInt(value);
        return buffer.array();
    }

    // append bytes to DataOutputStream
    public void appendBytes(byte[] bytesToAppend, int start, int end)
            throws IOException {
        for (int i = start; i < end; i++) {
            dos.writeByte(bytesToAppend[i]);
        }
    }

我必须分别使用 Long 和 int 变量来读写 int 和 short,以便将它们写为无符号数。

我一直在按照本网站上的说明进行操作https://blogs.msdn.microsoft.com/dawate/2009/06/23/intro-to-audio-programming-part-2-demystifying-the-wav-format/以确保所有数据的格式正确

读取和写入的主要问题是,如果我读取 1 作为短 (0000000000000001),它将跳过零并从 1 (10000000000000000) 开始读取。 如果那不是问题,我不知道是什么问题?

原来Wave文件是用little endian写的,而我是用big endian写的。我需要实现一个函数来反转字节数组的字节。 我想到了这个。

// bigToLittleEndien method
    public byte[] bigToLittleEndien(byte[] oldArray) {

        // new array
        byte[] newArray = new byte[oldArray.length];

        // reverse the order of byes
        for (int i = 0, j = oldArray.length - 1; i < oldArray.length; i++, j--) {
            newArray[i] = oldArray[j];
        }

        // return the new bytes
        return newArray;
    }

我还有其他一些小问题,但我都解决了。