Package jadx.api

Examples of jadx.api.JadxDecompiler.save()


  static void processAndSave(JadxCLIArgs jadxArgs) throws JadxException {
    JadxDecompiler jadx = new JadxDecompiler(jadxArgs);
    jadx.setOutputDir(jadxArgs.getOutDir());
    jadx.loadFiles(jadxArgs.getInput());
    jadx.save();
    if (jadx.getErrorsCount() != 0) {
      jadx.printErrorsReport();
      LOG.error("finished with errors");
    } else {
      LOG.info("done");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.