Package com.yifanlu.PSXperiaTool.Extractor

Examples of com.yifanlu.PSXperiaTool.Extractor.CrashBandicootExtractor


                    }
                    if (!inputZpak.exists()) {
                        Logger.error("Cannot find ZPAK file!");
                        return;
                    }
                    CrashBandicootExtractor extract = new CrashBandicootExtractor(inputApk, inputZpak, outputDataDir);
                    ProgressMonitor.ProgressCallback callback = new ProgressMonitor.ProgressCallback() {

                        public void nextStep(String string) {
                            extractStatus.setText(string);
                        }

                        public void stepsTook(int current, int max) {
                            extractProgress.setMaximum(max);
                            extractProgress.setValue(current);
                        }
                    };
                    extract.setCallback(callback);
                    extract.extractApk();
                    extractProgress.setValue(0);
                    extractButton.setEnabled(true);
                    mThis.setEnabled(true);
                } catch (IOException ex) {
                    Logger.error("Cannot extract APK! Java says %s", ex.getMessage());
View Full Code Here


                    continue;
                }
                Logger.warning("Unknown option %s", argument);
            }
        }
        (new CrashBandicootExtractor(inputApk, inputZpak, outputDir)).extractApk();
        System.exit(0);
    }
View Full Code Here

TOP

Related Classes of com.yifanlu.PSXperiaTool.Extractor.CrashBandicootExtractor

Copyright © 2018 www.massapicom. 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.