Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何反编译整个 Jar 文件?
我想看看类、代码以及它是如何设计的。当我尝试.class在 Netbeans 中打开一个时,它说它们无法打开。我错过了什么吗?如何查看 .jar 文件背后的代码?
.class
你必须找到一个java反编译器才能看到代码。如果它被混淆了,你将不会得到任何帮助。
大多数 jar 文件中没有源代码。如果 jar 文件用于开源软件,您应该能够在获得 jar 文件的同一网站上找到源代码。
如果找不到源,可以尝试反编译编译的类文件(在另一个答案中描述)。但是,您可能在法律上没有这样做的权利。