Uses of Class
java.net.MalformedURLException
-
Packages that use MalformedURLException 软件包 描述 java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.net 提供实现网络应用程序的类。java.rmi 提供RMI包。java.rmi.server 提供用于支持RMI服务器端的类和接口。javax.jnlp JNLP API旨在为Java Plugin中运行的JNLP应用程序提供附加服务,或者由Java Web Start启动。javax.management.remote 用于远程访问JMX MBean服务器的接口。 -
-
Uses of MalformedURLException in java.io
Methods in java.io that throw MalformedURLException Modifier and Type 方法 描述 URL
File. toURL()
-
Uses of MalformedURLException in java.net
Methods in java.net that throw MalformedURLException Modifier and Type 方法 描述 URL
URI. toURL()
从此URI构造一个URL。Constructors in java.net that throw MalformedURLException Constructor 描述 JarURLConnection(URL url)
创建新的JarURLConnection到指定的URL。URL(String spec)
从String
表示中创建一个URL
对象。URL(String protocol, String host, int port, String file)
创建URL
从指定对象protocol
,host
,port
号码,和file
。URL(String protocol, String host, int port, String file, URLStreamHandler handler)
创建URL
从指定对象protocol
,host
,port
号码,file
,和handler
。URL(String protocol, String host, String file)
从指定的protocol
名称,host
名称和file
名称创建一个URL。URL(URL context, String spec)
通过在指定的上下文中解析给定的规范来创建一个URL。URL(URL context, String spec, URLStreamHandler handler)
通过在指定上下文中使用指定的处理程序解析给定规范来创建URL。 -
Uses of MalformedURLException in java.rmi
Methods in java.rmi that throw MalformedURLException Modifier and Type 方法 描述 static void
Naming. bind(String name, Remote obj)
将指定的name
绑定到远程对象。static String[]
Naming. list(String name)
返回在注册表中绑定的名称的数组。static Remote
Naming. lookup(String name)
返回与指定的name
关联的远程对象的引用(stub)。static void
Naming. rebind(String name, Remote obj)
将指定的名称重新绑定到一个新的远程对象。static void
Naming. unbind(String name)
销毁与远程对象关联的指定名称的绑定。 -
Uses of MalformedURLException in java.rmi.server
Methods in java.rmi.server that throw MalformedURLException Modifier and Type 方法 描述 static ClassLoader
RMIClassLoader. getClassLoader(String codebase)
返回从给定的代码库URL路径加载类的类加载器。abstract ClassLoader
RMIClassLoaderSpi. getClassLoader(String codebase)
Class<?>
LoaderHandler. loadClass(String name)
已过时。没有替换Class<?>
LoaderHandler. loadClass(URL codebase, String name)
已过时。没有替换static Class<?>
RMIClassLoader. loadClass(String name)
已过时。替换为loadClass(String,String)
方法static Class<?>
RMIClassLoader. loadClass(String codebase, String name)
从代码库URL路径加载一个类。static Class<?>
RMIClassLoader. loadClass(String codebase, String name, ClassLoader defaultLoader)
从代码库URL路径加载类,可选地使用提供的加载程序。static Class<?>
RMIClassLoader. loadClass(URL codebase, String name)
从代码库URL加载一个类。abstract Class<?>
RMIClassLoaderSpi. loadClass(String codebase, String name, ClassLoader defaultLoader)
static Class<?>
RMIClassLoader. loadProxyClass(String codebase, String[] interfaces, ClassLoader defaultLoader)
加载一个动态代理类(参见Proxy
),它从代码库URL路径中实现了一组具有给定名称的接口。abstract Class<?>
RMIClassLoaderSpi. loadProxyClass(String codebase, String[] interfaces, ClassLoader defaultLoader)
-
Uses of MalformedURLException in javax.jnlp
Methods in javax.jnlp that throw MalformedURLException Modifier and Type 方法 描述 long
PersistenceService. create(URL url, long maxsize)
在客户端创建一个以给定的URL命名的永久存储条目。void
PersistenceService. delete(URL url)
从客户端日期持久性存储中删除与给定URL相关联的流。FileContents
PersistenceService. get(URL url)
返回表示此文件内容的FileContents
对象。String[]
PersistenceService. getNames(URL url)
返回一个字符串数组,其中包含给定URL的所有条目的名称。int
PersistenceService. getTag(URL url)
返回对应于与给定URL相关联的持久性数据存储条目的标记的当前值的int
。void
PersistenceService. setTag(URL url, int tag)
使用给定的标签值标记与给定URL相关联的持久数据存储条目。 -
Uses of MalformedURLException in javax.management.remote
Constructors in javax.management.remote that throw MalformedURLException Constructor 描述 JMXServiceURL(String serviceURL)
通过解析服务URL字符串构造一个JMXServiceURL
。JMXServiceURL(String protocol, String host, int port)
使用给定的协议,主机和端口构造一个JMXServiceURL
。JMXServiceURL(String protocol, String host, int port, String urlPath)
构造一个JMXServiceURL
与给定的部分。
-