Does the IntelliJ IDEA provide access to compiled “.class” files or decompiled “.class” files? I’m enrolled in a course that requests for students to submit compiled “.class” files.
Asked
Active
Viewed 379 times
0
-
1You can find them in your output directory, which should be named `out` or `target` or something like that. I'm not sure what you mean by compiled and decompiled .class files; there are only .class files, although you can decompile them to or compile them from .java source files – user May 19 '20 at 21:25
1 Answers
-1
IntelliJ does not produce any .class until you make your project
Image showing how to make your project
After making your project the class files will be in Target folder:

user13577751
- 16
- 2