我正在尝试使用HDF5DotNet.dll读取文件,但出现以下错误:
1. Solution exception:H5F.open
File "recorder.h5" failed to open with status -1
我已经能够用 HDFView 打开文件,所以我很确定文件没有损坏。该文件是从使用“HDF5 库版本:1.10.1”的 FEA 软件创建的。
我已附上文件以防有人想提供帮助
https://drive.google.com/file/d/1SAKkZf0VGHRfbdPKabyiEPzpEXie4VzC/view?usp=sharing
我用过的代码
import HDF5DotNet
from HDF5DotNet import *
import System
from System import Array, Double, Int64
print('\nInitializing HDF5 library\n')
status = H5.Open()
print('HDF5 ', H5.Version.Major, '.', H5.Version.Minor, '.', H5.Version.Release)
h5file = H5F.open('recorder.hdf5', H5F.OpenMode.ACC_RDONLY)
H5F.close(h5file)
print '\nShutting down HDF5 library\n'
status = H5.Close()