代码修改

This commit is contained in:
zhoudaxia 2016-08-26 11:19:21 +08:00
parent da27092d28
commit 6fd462a76e
1 changed files with 3 additions and 2 deletions

View File

@ -37,11 +37,12 @@ public class AutoExtract implements ActionListener {
String licenseText = "";
InputStream is;
JarFile extractJar;
try {
// extractJar = new JarFile("extract.jar");
JarFile extractJar = new JarFile("extract.jar");
is = extractJar.getInputStream(extractJar.getJarEntry("license/cpl-v10.html"));
extractJar.close();
} catch (IOException e) {
return true;
}