0

I'm working on a 3rd party tools for minecraft, and I been searching for a solution but I couldn't find one figure out how to decrypt .dat files. BTW using java

4

1 回答 1

3

在 iKlsR 提供的链接中明确说明,只需在类路径中导入 minecraft 服务器 jar 并直接使用正确的类进行反序列化。我想你可以打开一个InputStream,跳过标题,然后使用一个InputObjectStream来装饰并直接用 class 获取整个结构com.mojang.minecraft.level.Level

请注意,文件已压缩,您将需要使用流来关心它。

于 2011-10-16T03:07:11.573 回答