Java Incompatible magic value 4022320623

前端 未结 3 690
陌清茗
陌清茗 2020-12-21 10:38

Im getting a strange error when im compiling my code on a server and downloading it and trying to run it on my computer.

Im basically compiling some java files on an

3条回答
  •  醉梦人生
    2020-12-21 11:28

    Java is telling you it's not a valid class file because it doesn't begin with the expected byte sequence (0xCAFEBABE). Something went wrong when you downloaded it. Try inspecting your class file in an editor and see if maybe you actually have some other content in there.

提交回复
热议问题