假设只有一个双精度值以二进制格式写入文件。如何使用 C# 或 Java 读取该值?
如果我必须从一个巨大的二进制文件中找到一个双精度值,我应该使用什么技术来找到它?
问问题
4132 次
6 回答
10
双精度为 8 个字节。要从二进制文件中读取单个双精度,您可以使用BitConverter
类:
var fileContent = File.ReadAllBytes("C:\\1.bin");
double value = BitConverter.ToDouble(fileContent, 0);
如果需要从文件中间读取双精度,请将 0 替换为字节偏移量。
如果你不知道偏移量,你就不可能知道字节数组中的某个值是双精度、整数还是字符串。
另一种方法是:
using (var fileStream = File.OpenRead("C:\\1.bin"))
using (var binaryReader = new BinaryReader(fileStream))
{
// fileStream.Seek(0, SeekOrigin.Begin); // uncomment this line and set offset if the double is in the middle of the file
var value = binaryReader.ReadDouble();
}
第二种方法更适合大文件,因为它不会将整个文件内容加载到内存中。
于 2011-06-21T03:49:43.180 回答
2
你可以使用BinaryReader
类。
double value;
using( Stream stream = File.OpenRead(fileName) )
using( BinaryReader reader = new BinaryReader(stream) )
{
value = reader.ReadDouble();
}
对于第二点,如果您知道偏移量,只需使用Stream.Seek
方法。
于 2011-06-21T03:56:27.407 回答
1
似乎我们需要知道双精度值是如何在文件中编码的,然后才能找到它。
于 2011-06-21T03:51:22.367 回答
0
1)
double theDouble;
using (Stream sr = new FileStream(@"C:\delme.dat", FileMode.Open, FileAccess.Read))
{
byte[] buffer = new byte[8];
sr.Read(buffer, 0, 8);
theDouble = BitConverter.ToDouble(buffer, 0);
}
2)你不能。
于 2011-06-21T03:53:03.280 回答
0
以下是如何读取(以及出于测试目的而编写)双精度数:
// Write Double
FileStream FS = new FileStream(@"C:\Test.bin", FileMode.Create);
BinaryWriter BW = new BinaryWriter(FS);
double Data = 123.456;
BW.Write(Data);
BW.Close();
// Read Double
FS = new FileStream(@"C:\Test.bin", FileMode.Open);
BinaryReader BR = new BinaryReader(FS);
Data = BR.ReadDouble();
BR.Close();
从大文件中获取它取决于数据在文件中的布局方式。
于 2011-06-21T03:53:26.237 回答
0
using (FileStream filestream = new FileStream(filename, FileMode.Open))
using (BinaryReader reader = new BinaryReader(filestream))
{
float x = reader.ReadSingle();
}
于 2011-06-21T03:58:17.360 回答