@Deprecated public interface LoaderHandler
LoaderHandler是在以前的实现版本中由RMI运行时内部使用的接口。
它不应该被应用程序代码访问。
| Modifier and Type | Field and Description |
|---|---|
static String |
packagePrefix
已弃用
系统封装
LoaderHandler实现。
|
static final String packagePrefix
LoaderHandler实现。
@Deprecated 类<?> loadClass(String name) throws MalformedURLException, ClassNotFoundException
java.rmi.server.codebase属性指定的位置加载课程。
name - 要加载的类的名称
类加载类的
类对象
MalformedURLException - 如果系统属性
java.rmi.server.codebase包含无效的URL
ClassNotFoundException - 如果在代码库位置找不到类的定义。
@Deprecated 类<?> loadClass(URL codebase, String name) throws MalformedURLException, ClassNotFoundException
codebase - 加载类的URL
name - 要加载的类的名称
类加载类的
类对象
MalformedURLException - 如果
codebase参数包含无效的URL
ClassNotFoundException - 如果在指定的URL处找不到类的定义
@Deprecated Object getSecurityContext(ClassLoader loader)
loader - 从中获取安全上下文的类加载器
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.