我有包含六进制数据的字符串。我希望将其保存为原始六文件。

所以我有这样的字符串:

String str ="0105000027476175675C6261636B6772";


我要做的是,获取将具有相同数据字节的file.hex。

当我尝试时:

PrintStream out = new PrintStream("c:/file.hex");
out.print(str);


我得到的文件


“ 0105000027476175675C6261636B6772”


但在六是:


30 31 30 35 30 30 30 30 32 37 34 37 36 31 37 35 36 37 35 43 36 32 36
31 36 33 36 42 36 37 37 32


我的目标是将文件保存在六


01 05 00 00 27 47 61 75 67 5C 62 61 63 6B 67 72

最佳答案

两个十六进制数字组成一个字节。

File file = new File("yourFilePath");
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));


现在,循环遍历字符串,使用string.substring()方法一次获取两个字符。

您可能会认为Byte.parseByte(theTwoChars, 16)在这里是一个不错的选择,但是它会失败,因为它认为字节是有符号的。您应该改用:

byte b = (byte) ( Integer.parseInt(theTwoChars, 16) & 0xFF )


您可以一一写入字节,也可以构造一个数组将其存储在其中。

要将bytebyte[]写入输出流:

bos.write(bytes);


最后,关闭流:

bos.close();




这是我用来证明它的一种完全有效的方法:

public static void bytesToFile(String str, File file) throws IOException {
    BufferedOutputStream bos = null;
    try {

        // check for invalid string
        if(str.length() % 2 != 0) {
            throw new IllegalArgumentException("Hexa string length is not even.");
        }

        if(!str.matches("[0-9a-fA-F]+")) {
            throw new IllegalArgumentException("Hexa string contains invalid characters.");
        }

        // prepare output stream
        bos = new BufferedOutputStream(new FileOutputStream(file));

        // go through the string and make a byte array
        byte[] bytes = new byte[str.length() / 2];
        for (int i = 0; i < bytes.length; i++) {
            String twoChars = str.substring(2 * i, 2 * i + 2);

            int asInt = Integer.parseInt(twoChars, 16);

            bytes[i] = (byte) (asInt & 0xFF);
        }

        // write bytes
        bos.write(bytes);

    } finally {
        if (bos != null) bos.close();
    }
}

关于java - 字符串中的十六进制以用Java归档,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17971437/

10-14 14:58