Creating non-reverse-engineerable Java programs

后端 未结 14 1378
旧巷少年郎
旧巷少年郎 2020-11-29 08:46

Is there a way to deploy a Java program in a format that is not reverse-engineerable?

I know how to convert my application into an executable JAR file, but I want t

14条回答
  •  独厮守ぢ
    2020-11-29 09:23

    It can not be done. This is not a Java problem. Any language that can be compiled can be decompiled for Java, it's just easier.

    You are trying to show somebody a picture without actually showing them. It is not possible. You also can not hide your host even if you hide at the application level. Someone can still grap it via Wireshark or any other network sniffer.

提交回复
热议问题