Can I restore my source code that has been uploaded into Google AppEngine?

前端 未结 8 1691
旧巷少年郎
旧巷少年郎 2020-11-30 04:57

I recently had a hard drive crashed and lost all of my source code. Is it possible to pull/checkout the code that I have already uploaded to Google App Engine (like the most

8条回答
  •  一整个雨季
    2020-11-30 05:40

    You CAN get your code, even in Java. It just requires a bit of reverse engineering. You can download the war file using the appengine SDK by following these instructions: https://developers.google.com/appengine/docs/java/tools/uploadinganapp

    Then you at least have the class files that you can run through JAD to get back to the source files (close to it, at least).

提交回复
热议问题