Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Package | Description |
---|---|
java.net | Provides the classes for implementing networking applications. |
Uses of Proxy in java.net |
---|
Modifier and Type | Field and Description |
---|---|
static Proxy |
Proxy.NO_PROXY
A proxy setting that represents a DIRECT connection,
basically telling the protocol handler not to use any proxying. |
Modifier and Type | Method and Description |
---|---|
abstract List<Proxy> |
ProxySelector.select(URI uri)
Selects all the applicable proxies based on the protocol to access the resource with and a destination address to access the resource at. |
Modifier and Type | Method and Description |
---|---|
URLConnection |
URL.openConnection(Proxy proxy)
Same as URL.openConnection() , except that the connection will be
made through the specified proxy; Protocol handlers that do not
support proxing will ignore the proxy parameter and make a
normal connection. |
protected URLConnection |
URLStreamHandler.openConnection(URL u,
Proxy p)
Same as openConnection(URL), except that the connection will be made through the specified proxy; Protocol handlers that do not support proxying will ignore the proxy parameter and make a normal connection. |
Constructor and Description |
---|
Socket(Proxy proxy)
Creates an unconnected socket, specifying the type of proxy, if any, that should be used regardless of any other settings. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.