Home > Back-end >  Java - Export and build eclipse project from target folder
Java - Export and build eclipse project from target folder

Time:04-02

How can I export files to eclipse project from the target folder? I lost my project files. All I have is a target folder with binary .class files and static files in html. Can you somehow build a project out of it?

CodePudding user response:

Not possible. You can't go back to the original source files from just class files. You could decompile them which means you get code stripped of all names and comments except for method/fieldnames, code is mangled and worse, and probably broken. If you must - enter image description here

I need to create a pom file on this basis

  • Related