为什么从文件读取的字节在Java和VB.NET之间不同?

问题描述

我读取了file.dat的数据。

这是我在VB.NET中的代码

Dim data() As Byte = File.ReadAllBytes("F:\test.dat")

这是我在android中的代码

String fileName = Environment.getExternalStorageDirectory().getAbsolutePath() + "/data/test.dat";
File file = new File(fileName);
byte[] writeBuf= new byte[(int) file.length()];
FileInputStream fis = new FileInputStream(file);
fis.read(writeBuf);
fis.close();

这些是结果:Java和VB.NET之间的某些字节不同

enter image description here

为什么Java和VB.NET之间的字节值不同?

解决方法

看看这些值,看来这只是一个有符号/无符号字节问题。

签名字节为-128到127(在Java上下文中使用),而无符号字节为0到255(在.Net上下文中使用)。

请注意,两个上下文之间的数字不同时,如果将它们相加,则它们的总和为256(无论有符号/无符号,一个字节的最大值数)。 (例如154 + 102 = 256和217 + 39 = 256)。因此,数据基本相同,只是在支持的数据类型范围内以不同的方式表示。

Java没有无符号字节。