I want to read some HDF5 stream of several gigabytes. I also want to stay in native java for portability.
I have tried Java HDF Object Package and Java HDF5 Interface (JHI5) but theses are some JNI solutions (that I might reconsider if i don't find better options).
https://github.com/jamesmudd/jhdf is a native java library but does not support slicing or streaming so is not usable for big files.
Is there some more option in native Java ?
Edit : I found this : https://www.unidata.ucar.edu/software/netcdf-java/current/ It's supports slicing but not streaming.