Yaili 发表于 2024-10-19 20:39:04

模组出现Uncaught exception in thread "main"问题

报错内容
Uncaught exception in thread "main"
java.lang.RuntimeException: Error creating Mixin config hello.client.mixins.json for mod hello
        at net.fabricmc.loader.impl.launch.FabricMixinBootstrap.init(FabricMixinBootstrap.java:96)
        at net.fabricmc.loader.impl.launch.knot.Knot.init(Knot.java:151)
        at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:68)
        at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
        at net.fabricmc.devlaunchinjector.Main.main(Main.java:86)
Caused by: org.spongepowered.asm.launch.MixinInitialisationError: Error initialising mixin config hello.client.mixins.json
        at org.spongepowered.asm.mixin.transformer.Config.create(Config.java:168)
        at org.spongepowered.asm.mixin.Mixins.createConfiguration(Mixins.java:121)
        at org.spongepowered.asm.mixin.Mixins.addConfiguration(Mixins.java:108)
        at org.spongepowered.asm.mixin.Mixins.addConfiguration(Mixins.java:98)
        at net.fabricmc.loader.impl.launch.FabricMixinBootstrap.init(FabricMixinBootstrap.java:94)
        ... 4 more
Caused by: java.lang.IllegalArgumentException: The specified resource 'hello.client.mixins.json' was invalid or could not be read
        at org.spongepowered.asm.mixin.transformer.MixinConfig.create(MixinConfig.java:1395)
        at org.spongepowered.asm.mixin.transformer.Config.create(Config.java:163)
        ... 8 more


我今天刚刚尝试弄模组就出这样的问题,java水平也不高,如果有低级错误请见谅


zhj123456ddsh 发表于 2024-10-22 19:02:12

以下仅供参考
这个错误是在 Java 运行时抛出的未捕获异常。具体是在运行“hello”这个模组时出现问题。错误信息表明在创建“hello.client.mixins.json”这个 Mixin 配置文件时出错。

可能的原因及解决方法如下:

1. 配置文件路径错误:确保“hello.client.mixins.json”文件的路径是正确的,并且可以被程序访问到。
2. 文件损坏或格式错误:检查该配置文件是否损坏或格式不正确。可以尝试重新生成或修复该文件。
3. 权限问题:确保程序有足够的权限读取该文件。如果是在特定的操作系统上运行,可能需要检查文件权限设置。
页: [1]
查看完整版本: 模组出现Uncaught exception in thread "main"问题