if (!in.isLocal()) {
System.out.print("~~~Improper Usage~~~\nThe input ape file should be local file.\n");
return;
}
APEInfo apeInfo = IAPEDecompress.CreateAPEInfo(in);
APETag tag = apeInfo.getApeInfoTag();
tag.Remove(false);
tag.SetFieldString(args[1], args[2]);
ID3Tag id3 = new ID3Tag();
tag.CreateID3Tag(id3);
tag.Save();
apeInfo.close();
} catch (Exception e) {
e.printStackTrace();
}
}