Package mwt.wow.mpq

Examples of mwt.wow.mpq.MpqArchive.dump()


  public static void main(String[] args) throws IOException {
    File mpqFile = new File(args[0]);
    MpqArchive mpqArchive = new MpqArchive(mpqFile);
    mpqArchive.readExtData();
    mpqArchive.dump(args.length > 1 ? new PrintStream(new File(args[1]))
        : System.out);
    mpqArchive.close();
  }
}
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.