Hi, I'm struggling to get 7-Zip-JBinding to run with Java 10 & modules.
Specifically, the "initialization using platform jar" does not work out of the box. It fails at one of the first steps:
InputStream propertiesInputStream = SevenZip.class.getResourceAsStream("sevenzipjbinding-platforms.properties");
I presume this would be the correct way of doing this nowadays:
ModuleLayer.boot()
.findModule("sevenzipjbinding.Windows.amd64")
.get()
.getResourceAsStream("sevenzipjbinding-platforms.properties");
The "manual initialization" works, but is cumbersome.
Hello Philipp,
Thank you for the bug report.
I will look into it.
PS
Contributions are always welcome :)
You can find the source code also on github: https://github.com/borisbrodski/sevenzipjbinding