Jar File - Prevent Access to Source Code

前端 未结 10 1155
别那么骄傲
别那么骄傲 2021-01-19 16:40

I want to hand over a small Java app as a runnable jar but I do not want anybody to have access to my source code. Am I right in presuming that there is no source code (.jav

10条回答
  •  北海茫月
    2021-01-19 17:14

    You are are correct, however the .class files can easily be disassembled to java code, and its pretty accurate in most cases.

    If you really need it to be properly secure then you'll need to obfuscate.

提交回复
热议问题