代码搜索:ClassLoader
找到约 540 项符合「ClassLoader」的源代码
代码结果 540
www.eeworm.com/read/167133/5469425
java findsystemclass.java
import java.lang.reflect.*;
class BaseFSC {
static {
System.out.println("findSystemClass initializes me.");
}
public static void staticMethod() {
System.out.println("staticMethod invoke
www.eeworm.com/read/167133/5469492
java prohibitedclass.java
import java.io.InputStream;
/**
* Make sure a user level class loader can't define things in the bootstrap
* packages 'java' and 'kaffe'.
*/
class ProhibitedClass
extends ClassLoader
{
pu
www.eeworm.com/read/162614/5536536
java sharedlibhelper.java
/* Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult th
www.eeworm.com/read/162614/5536547
java sharedlibloader.java
/* Copyright (C) 2001, 2003 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBG
www.eeworm.com/read/162614/5537053
java bytearray.java
public class bytearray
{
public static void main (String[] argv) throws Throwable {
Class c = Class.forName ("[Ljava.lang.String;");
c = Class.forName ("[B");
System.out.println (c);
www.eeworm.com/read/162614/5537357
java testmultiple.java
import java.net.*;
public class TestMultiple
{
public static void main (String[] args)
{
URLClassLoader ucl =
(URLClassLoader) ClassLoader.getSystemClassLoader();
URL urls[] = ucl.
www.eeworm.com/read/162614/5537358
java myloader.java
import java.net.*;
public class MyLoader extends URLClassLoader
{
public MyLoader (URL urls[])
{
super (urls);
}
public MyLoader (URL urls[], ClassLoader parent)
{
super (urls, par
www.eeworm.com/read/162519/5546068
java sharedlibhelper.java
/* Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult th
www.eeworm.com/read/162519/5546079
java sharedlibloader.java
/* Copyright (C) 2001, 2003 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBG
www.eeworm.com/read/162519/5546585
java bytearray.java
public class bytearray
{
public static void main (String[] argv) throws Throwable {
Class c = Class.forName ("[Ljava.lang.String;");
c = Class.forName ("[B");
System.out.println (c);