Uses of Class
java.net.MalformedURLException
Package
Description
Provides for system input and output through data streams,
serialization and the file system.
Provides the classes for implementing networking applications.
Provides the RMI package.
Provides classes and interfaces for supporting the server side of RMI.
Interfaces for remote access to
JMX MBean servers.
-
Uses of MalformedURLException in java.io
-
Uses of MalformedURLException in java.net
ModifierConstructorDescriptionprotected
JarURLConnection
(URL url) Creates the new JarURLConnection to the specified URL.Creates aURL
object from theString
representation.Creates aURL
object from the specifiedprotocol
,host
,port
number, andfile
.URL
(String protocol, String host, int port, String file, URLStreamHandler handler) Creates aURL
object from the specifiedprotocol
,host
,port
number,file
, andhandler
.Creates a URL from the specifiedprotocol
name,host
name, andfile
name.Creates a URL by parsing the given spec within a specified context.URL
(URL context, String spec, URLStreamHandler handler) Creates a URL by parsing the given spec with the specified handler within a specified context. -
Uses of MalformedURLException in java.rmi
Modifier and TypeMethodDescriptionstatic void
Binds the specifiedname
to a remote object.static String[]
Returns an array of the names bound in the registry.static Remote
Returns a reference, a stub, for the remote object associated with the specifiedname
.static void
Rebinds the specified name to a new remote object.static void
Destroys the binding for the specified name that is associated with a remote object. -
Uses of MalformedURLException in java.rmi.server
Modifier and TypeMethodDescriptionstatic ClassLoader
RMIClassLoader.getClassLoader
(String codebase) Returns a class loader that loads classes from the given codebase URL path.abstract ClassLoader
RMIClassLoaderSpi.getClassLoader
(String codebase) Provides the implementation forRMIClassLoader.getClassLoader(String)
.Class<?>
Deprecated.no replacementClass<?>
Deprecated.no replacementstatic Class<?>
Deprecated.replaced byloadClass(String,String)
methodstatic Class<?>
Loads a class from a codebase URL path.static Class<?>
RMIClassLoader.loadClass
(String codebase, String name, ClassLoader defaultLoader) Loads a class from a codebase URL path, optionally using the supplied loader.static Class<?>
Loads a class from a codebase URL.abstract Class<?>
RMIClassLoaderSpi.loadClass
(String codebase, String name, ClassLoader defaultLoader) Provides the implementation forRMIClassLoader.loadClass(URL,String)
,RMIClassLoader.loadClass(String,String)
, andRMIClassLoader.loadClass(String,String,ClassLoader)
.static Class<?>
RMIClassLoader.loadProxyClass
(String codebase, String[] interfaces, ClassLoader defaultLoader) Loads a dynamic proxy class (seeProxy
) that implements a set of interfaces with the given names from a codebase URL path.abstract Class<?>
RMIClassLoaderSpi.loadProxyClass
(String codebase, String[] interfaces, ClassLoader defaultLoader) Provides the implementation forRMIClassLoader.loadProxyClass(String,String[],ClassLoader)
. -
Uses of MalformedURLException in javax.management.remote
ModifierConstructorDescriptionJMXServiceURL
(String serviceURL) Constructs aJMXServiceURL
by parsing a Service URL string.JMXServiceURL
(String protocol, String host, int port) Constructs aJMXServiceURL
with the given protocol, host, and port.JMXServiceURL
(String protocol, String host, int port, String urlPath) Constructs aJMXServiceURL
with the given parts.