changeset in /hg/icedtea: 2009-07-07 Omair Majid <omajid at redha...
Omair Majid
omajid at redhat.com
Tue Aug 4 09:07:36 PDT 2009
changeset 0a41b2f5f086 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=0a41b2f5f086
description:
2009-07-07 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/resources/Messages.properties: Add
RNestedJarExtration.
* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
(activateJar): Create parent directories for nested jars.
diffstat:
3 files changed, 12 insertions(+)
ChangeLog | 7 +++++++
netx/net/sourceforge/jnlp/resources/Messages.properties | 1 +
netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java | 4 ++++
diffs (39 lines):
diff -r dd483ae1e6ca -r 0a41b2f5f086 ChangeLog
--- a/ChangeLog Wed Jun 24 16:26:08 2009 -0400
+++ b/ChangeLog Tue Jul 07 10:12:31 2009 -0400
@@ -1,3 +1,10 @@ 2009-06-24 Omair Majid <omajid at redhat.
+2009-07-07 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/resources/Messages.properties: Add
+ RNestedJarExtration.
+ * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
+ (activateJar): Create parent directories for nested jars.
+
2009-06-24 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/security/CertWarningPane.java
diff -r dd483ae1e6ca -r 0a41b2f5f086 netx/net/sourceforge/jnlp/resources/Messages.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages.properties Wed Jun 24 16:26:08 2009 -0400
+++ b/netx/net/sourceforge/jnlp/resources/Messages.properties Tue Jul 07 10:12:31 2009 -0400
@@ -111,6 +111,7 @@ RDenyStopped=Stopped applications have n
RDenyStopped=Stopped applications have no permissions.
RExitNoApp=Can not exit the JVM because the current application cannot be determined.
RNoLockDir=Unable to create locks directory ({0})
+RNestedJarExtration=Unable to extract nested jar.
RUnexpected=Unexpected {0} at {1}
# Boot options, message should be shorter than this ---------------->
diff -r dd483ae1e6ca -r 0a41b2f5f086 netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Wed Jun 24 16:26:08 2009 -0400
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java Tue Jul 07 10:12:31 2009 -0400
@@ -521,6 +521,10 @@ public class JNLPClassLoader extends URL
// with standard classloader methods)
String extractedJarLocation = localFile.getParent() + "/" + je.getName();
+ File parentDir = new File(extractedJarLocation).getParentFile();
+ if (!parentDir.isDirectory() && !parentDir.mkdirs()) {
+ throw new RuntimeException(R("RNestedJarExtration"));
+ }
FileOutputStream extractedJar = new FileOutputStream(extractedJarLocation);
InputStream is = jarFile.getInputStream(je);
More information about the distro-pkg-dev
mailing list