jdk/test/java/net/URLClassLoader/B6896088.java
author dsamersoff
Sun, 03 Feb 2013 22:28:08 +0400
changeset 15460 ac08a4bdd0f6
parent 7980 3af394bb6f59
permissions -rw-r--r--
8002048: Protocol to discovery of manageable Java processes on a network Summary: Introduce a protocol to discover manageble Java instances across a network subnet, JDP Reviewed-by: sla, dfuchs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7980
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     1
/*
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     4
 *
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     8
 *
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    13
 * accompanied this code).
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    14
 *
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    18
 *
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    21
 * questions.
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    22
 */
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    23
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    24
/**
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    25
 * @test
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    26
 * @bug 6896088
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    27
 * @run main/othervm B6896088
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    28
 * @summary URLClassLoader.close() apparently not working for JAR URLs on Windows
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    29
 */
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    30
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    31
import java.net.*;
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    32
import java.io.*;
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    33
import java.nio.file.Path;
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    34
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    35
public class B6896088 {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    36
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    37
   public static void main(String[] args) throws Exception {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    38
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    39
       String dir = System.getProperty ("test.classes");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    40
       File jarf = new File (dir, "foo.jar");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    41
       FileOutputStream fos = new FileOutputStream (jarf);
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    42
       fos.write(bytes(nums));
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    43
       fos.close();
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    44
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    45
       // Create URL using JAR protocol
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    46
       String jarName = (jarf.toURI()).toString();
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    47
       URL url = new URL("jar", "", jarName + "!/");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    48
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    49
       // Create URLClassLoader from the URL
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    50
       URLClassLoader loader = new URLClassLoader(new URL[]{url});
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    51
       Class c = loader.loadClass("Foo");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    52
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    53
       // Close the URLClassLoader so we can delete/update the jar file
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    54
       loader.close();
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    55
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    56
       // Now try to delete the jar file
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    57
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    58
       if (jarf.delete() && !jarf.exists()) {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    59
           System.out.println(jarf.getName()+" File Deleted");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    60
       } else {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    61
           System.out.println(jarf.getName()+" File Not Deleted");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    62
           throw new RuntimeException ("File not deleted");
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    63
       }
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    64
   }
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    65
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    66
   static byte[] bytes (int[] i) {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    67
        byte[] buf = new byte [i.length];
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    68
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    69
        for (int j=0; j<i.length; j++) {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    70
            buf[j] = (byte)i[j];
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    71
        }
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    72
        return buf;
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    73
   }
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    74
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    75
   /* contents of foo.jar */
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    76
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    77
   static final int nums[] = {
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    78
       0x50,0x4b,0x03,0x04,0x14,0x00,0x08,0x08,0x08,0x00,0xc8,0x61,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    79
       0x90,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    80
       0x00,0x00,0x09,0x00,0x04,0x00,0x4d,0x45,0x54,0x41,0x2d,0x49,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    81
       0x4e,0x46,0x2f,0xfe,0xca,0x00,0x00,0x03,0x00,0x50,0x4b,0x07,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    82
       0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    83
       0x00,0x50,0x4b,0x03,0x04,0x14,0x00,0x08,0x08,0x08,0x00,0xc8,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    84
       0x61,0x90,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    85
       0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x4d,0x45,0x54,0x41,0x2d,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    86
       0x49,0x4e,0x46,0x2f,0x4d,0x41,0x4e,0x49,0x46,0x45,0x53,0x54,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    87
       0x2e,0x4d,0x46,0xf3,0x4d,0xcc,0xcb,0x4c,0x4b,0x2d,0x2e,0xd1,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    88
       0x0d,0x4b,0x2d,0x2a,0xce,0xcc,0xcf,0xb3,0x52,0x30,0xd4,0x33,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    89
       0xe0,0xe5,0x72,0x2e,0x4a,0x4d,0x2c,0x49,0x4d,0xd1,0x75,0xaa,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    90
       0x04,0x09,0x98,0xeb,0x19,0xe8,0x66,0xe6,0x95,0xa4,0x16,0xe5,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    91
       0x25,0xe6,0x28,0x68,0xf8,0x17,0x25,0x26,0xe7,0xa4,0x2a,0x38,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    92
       0xe7,0x17,0x15,0xe4,0x17,0x25,0x96,0x00,0x35,0x69,0xf2,0x72,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    93
       0xf1,0x72,0x01,0x00,0x50,0x4b,0x07,0x08,0x4c,0xd8,0x5e,0x68,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    94
       0x49,0x00,0x00,0x00,0x4a,0x00,0x00,0x00,0x50,0x4b,0x03,0x04,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    95
       0x14,0x00,0x08,0x08,0x08,0x00,0xbd,0x61,0x90,0x3d,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    96
       0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    97
       0x00,0x00,0x46,0x6f,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x3b,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    98
       0xf5,0x6f,0xd7,0x3e,0x06,0x06,0x06,0x63,0x06,0x5e,0x2e,0x06,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
    99
       0x66,0x06,0x2e,0x76,0x06,0x6e,0x76,0x06,0x1e,0x46,0x06,0x36,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   100
       0x9b,0xcc,0xbc,0xcc,0x12,0x3b,0x46,0x06,0x66,0x0d,0xcd,0x30,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   101
       0x46,0x06,0x16,0xe7,0xfc,0x94,0x54,0x46,0x06,0x7e,0x9f,0xcc,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   102
       0xbc,0x54,0xbf,0xd2,0xdc,0xa4,0xd4,0xa2,0x90,0xc4,0xa4,0x1c,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   103
       0xa0,0x08,0x57,0x70,0x7e,0x69,0x51,0x72,0xaa,0x5b,0x26,0x88,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   104
       0xc3,0xe1,0x96,0x9f,0xaf,0x97,0x95,0x58,0x96,0xc8,0xc3,0xc0,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   105
       0xc2,0xc0,0x0a,0xd4,0x0b,0xe4,0x33,0x32,0x08,0x80,0x44,0xf4,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   106
       0x73,0x12,0xf3,0xd2,0xf5,0xfd,0x93,0xb2,0x52,0x93,0x4b,0x18,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   107
       0x14,0x19,0x98,0x80,0x76,0x81,0x00,0x23,0x10,0x02,0x95,0x02,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   108
       0x49,0x36,0x20,0x4f,0x16,0xcc,0x67,0x60,0x60,0xd5,0xda,0xce,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   109
       0xc0,0xb8,0x11,0x2c,0xcd,0x0e,0x24,0xd9,0xc0,0x82,0x20,0x29,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   110
       0x0e,0x20,0xcd,0xc4,0xc0,0x09,0x00,0x50,0x4b,0x07,0x08,0x3e,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   111
       0x0a,0xdc,0x88,0x98,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x50,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   112
       0x4b,0x01,0x02,0x14,0x00,0x14,0x00,0x08,0x08,0x08,0x00,0xc8,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   113
       0x61,0x90,0x3d,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   114
       0x00,0x00,0x00,0x09,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   115
       0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x45,0x54,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   116
       0x41,0x2d,0x49,0x4e,0x46,0x2f,0xfe,0xca,0x00,0x00,0x50,0x4b,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   117
       0x01,0x02,0x14,0x00,0x14,0x00,0x08,0x08,0x08,0x00,0xc8,0x61,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   118
       0x90,0x3d,0x4c,0xd8,0x5e,0x68,0x49,0x00,0x00,0x00,0x4a,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   119
       0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   120
       0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0x4d,0x45,0x54,0x41,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   121
       0x2d,0x49,0x4e,0x46,0x2f,0x4d,0x41,0x4e,0x49,0x46,0x45,0x53,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   122
       0x54,0x2e,0x4d,0x46,0x50,0x4b,0x01,0x02,0x14,0x00,0x14,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   123
       0x08,0x08,0x08,0x00,0xbd,0x61,0x90,0x3d,0x3e,0x0a,0xdc,0x88,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   124
       0x98,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x09,0x00,0x00,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   125
       0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc8,0x00,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   126
       0x00,0x00,0x46,0x6f,0x6f,0x2e,0x63,0x6c,0x61,0x73,0x73,0x50,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   127
       0x4b,0x05,0x06,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0xb4,
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   128
       0x00,0x00,0x00,0x97,0x01,0x00,0x00,0x00,0x00,0x00
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   129
   };
3af394bb6f59 6896088: URLClassLoader.close() apparently not working for JAR URLs on Windows
michaelm
parents:
diff changeset
   130
}