Java Doc for HttpURLConnection.java in  » 6.0-JDK-Modules » j2me » java » net » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.net 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.net.URLConnection
      java.net.HttpURLConnection

All known Subclasses:   sun.net.www.protocol.http.HttpURLConnection,
HttpURLConnection
abstract public class HttpURLConnection extends URLConnection (Code)
A URLConnection with support for HTTP-specific features. See the spec for details.

Each HttpURLConnection instance is used to make a single request but the underlying network connection to the HTTP server may be transparently shared by other instances. Calling the close() methods on the InputStream or OutputStream of an HttpURLConnection after a request may free network resources associated with this instance but has no effect on any shared persistent connection. Calling the disconnect() method may close the underlying socket if a persistent connection is otherwise idle at that time.
See Also:   java.net.HttpURLConnection.disconnect
since:
   JDK1.1



Field Summary
final public static  intHTTP_ACCEPTED
     HTTP Status-Code 202: Accepted.
final public static  intHTTP_BAD_GATEWAY
     HTTP Status-Code 502: Bad Gateway.
final public static  intHTTP_BAD_METHOD
     HTTP Status-Code 405: Method Not Allowed.
final public static  intHTTP_BAD_REQUEST
     HTTP Status-Code 400: Bad Request.
final public static  intHTTP_CLIENT_TIMEOUT
     HTTP Status-Code 408: Request Time-Out.
final public static  intHTTP_CONFLICT
     HTTP Status-Code 409: Conflict.
final public static  intHTTP_CREATED
     HTTP Status-Code 201: Created.
final public static  intHTTP_ENTITY_TOO_LARGE
     HTTP Status-Code 413: Request Entity Too Large.
final public static  intHTTP_FORBIDDEN
     HTTP Status-Code 403: Forbidden.
final public static  intHTTP_GATEWAY_TIMEOUT
     HTTP Status-Code 504: Gateway Timeout.
final public static  intHTTP_GONE
     HTTP Status-Code 410: Gone.
final public static  intHTTP_INTERNAL_ERROR
     HTTP Status-Code 500: Internal Server Error.
final public static  intHTTP_LENGTH_REQUIRED
     HTTP Status-Code 411: Length Required.
final public static  intHTTP_MOVED_PERM
     HTTP Status-Code 301: Moved Permanently.
final public static  intHTTP_MOVED_TEMP
     HTTP Status-Code 302: Temporary Redirect.
final public static  intHTTP_MULT_CHOICE
     HTTP Status-Code 300: Multiple Choices.
final public static  intHTTP_NOT_ACCEPTABLE
     HTTP Status-Code 406: Not Acceptable.
final public static  intHTTP_NOT_AUTHORITATIVE
     HTTP Status-Code 203: Non-Authoritative Information.
final public static  intHTTP_NOT_FOUND
     HTTP Status-Code 404: Not Found.
final public static  intHTTP_NOT_IMPLEMENTED
     HTTP Status-Code 501: Not Implemented.
final public static  intHTTP_NOT_MODIFIED
     HTTP Status-Code 304: Not Modified.
final public static  intHTTP_NO_CONTENT
     HTTP Status-Code 204: No Content.
final public static  intHTTP_OK
     HTTP Status-Code 200: OK.
final public static  intHTTP_PARTIAL
     HTTP Status-Code 206: Partial Content.
final public static  intHTTP_PAYMENT_REQUIRED
     HTTP Status-Code 402: Payment Required.
final public static  intHTTP_PRECON_FAILED
     HTTP Status-Code 412: Precondition Failed.
final public static  intHTTP_PROXY_AUTH
     HTTP Status-Code 407: Proxy Authentication Required.
final public static  intHTTP_REQ_TOO_LONG
     HTTP Status-Code 414: Request-URI Too Large.
final public static  intHTTP_RESET
     HTTP Status-Code 205: Reset Content.
final public static  intHTTP_SEE_OTHER
     HTTP Status-Code 303: See Other.
final public static  intHTTP_UNAUTHORIZED
     HTTP Status-Code 401: Unauthorized.
final public static  intHTTP_UNAVAILABLE
     HTTP Status-Code 503: Service Unavailable.
final public static  intHTTP_UNSUPPORTED_TYPE
     HTTP Status-Code 415: Unsupported Media Type.
final public static  intHTTP_USE_PROXY
     HTTP Status-Code 305: Use Proxy.
final public static  intHTTP_VERSION
     HTTP Status-Code 505: HTTP Version Not Supported.
protected  booleaninstanceFollowRedirects
     If true, the protocol will automatically follow redirects. If false, the protocol will not automatically follow redirects.

This field is set by the setInstanceFollowRedirects method.

protected  Stringmethod
     The HTTP method (GET,POST,PUT,etc.).
protected  intresponseCode
     An int representing the three digit HTTP Status-Code.
protected  StringresponseMessage
     The HTTP response message.

Constructor Summary
protected  HttpURLConnection(URL u)
     Constructor for the HttpURLConnection.

Method Summary
abstract public  voiddisconnect()
     Indicates that other requests to the server are unlikely in the near future.
public  InputStreamgetErrorStream()
     Returns the error stream if the connection failed but the server sent useful data nonetheless.
public static  booleangetFollowRedirects()
     Returns a boolean indicating whether or not HTTP redirects (3xx) should be automatically followed.
public  StringgetHeaderField(int n)
     Returns the value for the nth header field.
public  longgetHeaderFieldDate(String name, long Default)
    
public  StringgetHeaderFieldKey(int n)
     Returns the key for the nth header field. Some implementations may treat the 0th header field as special, i.e.
public  booleangetInstanceFollowRedirects()
     Returns the value of this HttpURLConnection's instanceFollowRedirects field.
public  PermissiongetPermission()
    
public  StringgetRequestMethod()
     Get the request method.
public  intgetResponseCode()
     Gets the status code from an HTTP response message. For example, in the case of the following status lines:
 HTTP/1.0 200 OK
 HTTP/1.0 401 Unauthorized
 
It will return 200 and 401 respectively. Returns -1 if no code can be discerned from the response (i.e., the response is not valid HTTP).
throws:
  IOException - if an error occurred connecting to the server.
public  StringgetResponseMessage()
     Gets the HTTP response message, if any, returned along with the response code from a server.
public static  voidsetFollowRedirects(boolean set)
     Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class.
public  voidsetInstanceFollowRedirects(boolean followRedirects)
     Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnection instance.
public  voidsetRequestMethod(String method)
     Set the method for the URL request, one of:
  • GET
  • POST
  • HEAD
  • OPTIONS
  • PUT
  • DELETE
  • TRACE
are legal, subject to protocol restrictions.
abstract public  booleanusingProxy()
     Indicates if the connection is going through a proxy.

Field Detail
HTTP_ACCEPTED
final public static int HTTP_ACCEPTED(Code)
HTTP Status-Code 202: Accepted.



HTTP_BAD_GATEWAY
final public static int HTTP_BAD_GATEWAY(Code)
HTTP Status-Code 502: Bad Gateway.



HTTP_BAD_METHOD
final public static int HTTP_BAD_METHOD(Code)
HTTP Status-Code 405: Method Not Allowed.



HTTP_BAD_REQUEST
final public static int HTTP_BAD_REQUEST(Code)
HTTP Status-Code 400: Bad Request.



HTTP_CLIENT_TIMEOUT
final public static int HTTP_CLIENT_TIMEOUT(Code)
HTTP Status-Code 408: Request Time-Out.



HTTP_CONFLICT
final public static int HTTP_CONFLICT(Code)
HTTP Status-Code 409: Conflict.



HTTP_CREATED
final public static int HTTP_CREATED(Code)
HTTP Status-Code 201: Created.



HTTP_ENTITY_TOO_LARGE
final public static int HTTP_ENTITY_TOO_LARGE(Code)
HTTP Status-Code 413: Request Entity Too Large.



HTTP_FORBIDDEN
final public static int HTTP_FORBIDDEN(Code)
HTTP Status-Code 403: Forbidden.



HTTP_GATEWAY_TIMEOUT
final public static int HTTP_GATEWAY_TIMEOUT(Code)
HTTP Status-Code 504: Gateway Timeout.



HTTP_GONE
final public static int HTTP_GONE(Code)
HTTP Status-Code 410: Gone.



HTTP_INTERNAL_ERROR
final public static int HTTP_INTERNAL_ERROR(Code)
HTTP Status-Code 500: Internal Server Error.



HTTP_LENGTH_REQUIRED
final public static int HTTP_LENGTH_REQUIRED(Code)
HTTP Status-Code 411: Length Required.



HTTP_MOVED_PERM
final public static int HTTP_MOVED_PERM(Code)
HTTP Status-Code 301: Moved Permanently.



HTTP_MOVED_TEMP
final public static int HTTP_MOVED_TEMP(Code)
HTTP Status-Code 302: Temporary Redirect.



HTTP_MULT_CHOICE
final public static int HTTP_MULT_CHOICE(Code)
HTTP Status-Code 300: Multiple Choices.



HTTP_NOT_ACCEPTABLE
final public static int HTTP_NOT_ACCEPTABLE(Code)
HTTP Status-Code 406: Not Acceptable.



HTTP_NOT_AUTHORITATIVE
final public static int HTTP_NOT_AUTHORITATIVE(Code)
HTTP Status-Code 203: Non-Authoritative Information.



HTTP_NOT_FOUND
final public static int HTTP_NOT_FOUND(Code)
HTTP Status-Code 404: Not Found.



HTTP_NOT_IMPLEMENTED
final public static int HTTP_NOT_IMPLEMENTED(Code)
HTTP Status-Code 501: Not Implemented.



HTTP_NOT_MODIFIED
final public static int HTTP_NOT_MODIFIED(Code)
HTTP Status-Code 304: Not Modified.



HTTP_NO_CONTENT
final public static int HTTP_NO_CONTENT(Code)
HTTP Status-Code 204: No Content.



HTTP_OK
final public static int HTTP_OK(Code)
HTTP Status-Code 200: OK.



HTTP_PARTIAL
final public static int HTTP_PARTIAL(Code)
HTTP Status-Code 206: Partial Content.



HTTP_PAYMENT_REQUIRED
final public static int HTTP_PAYMENT_REQUIRED(Code)
HTTP Status-Code 402: Payment Required.



HTTP_PRECON_FAILED
final public static int HTTP_PRECON_FAILED(Code)
HTTP Status-Code 412: Precondition Failed.



HTTP_PROXY_AUTH
final public static int HTTP_PROXY_AUTH(Code)
HTTP Status-Code 407: Proxy Authentication Required.



HTTP_REQ_TOO_LONG
final public static int HTTP_REQ_TOO_LONG(Code)
HTTP Status-Code 414: Request-URI Too Large.



HTTP_RESET
final public static int HTTP_RESET(Code)
HTTP Status-Code 205: Reset Content.



HTTP_SEE_OTHER
final public static int HTTP_SEE_OTHER(Code)
HTTP Status-Code 303: See Other.



HTTP_UNAUTHORIZED
final public static int HTTP_UNAUTHORIZED(Code)
HTTP Status-Code 401: Unauthorized.



HTTP_UNAVAILABLE
final public static int HTTP_UNAVAILABLE(Code)
HTTP Status-Code 503: Service Unavailable.



HTTP_UNSUPPORTED_TYPE
final public static int HTTP_UNSUPPORTED_TYPE(Code)
HTTP Status-Code 415: Unsupported Media Type.



HTTP_USE_PROXY
final public static int HTTP_USE_PROXY(Code)
HTTP Status-Code 305: Use Proxy.



HTTP_VERSION
final public static int HTTP_VERSION(Code)
HTTP Status-Code 505: HTTP Version Not Supported.



instanceFollowRedirects
protected boolean instanceFollowRedirects(Code)
If true, the protocol will automatically follow redirects. If false, the protocol will not automatically follow redirects.

This field is set by the setInstanceFollowRedirects method. Its value is returned by the getInstanceFollowRedirects method.

Its default value is based on the value of the static followRedirects at HttpURLConnection construction time.
See Also:   java.net.HttpURLConnection.setInstanceFollowRedirects(boolean)
See Also:   java.net.HttpURLConnection.getInstanceFollowRedirects
See Also:   java.net.HttpURLConnection.setFollowRedirects(boolean)




method
protected String method(Code)
The HTTP method (GET,POST,PUT,etc.).



responseCode
protected int responseCode(Code)
An int representing the three digit HTTP Status-Code.
  • 1xx: Informational
  • 2xx: Success
  • 3xx: Redirection
  • 4xx: Client Error
  • 5xx: Server Error



responseMessage
protected String responseMessage(Code)
The HTTP response message.




Constructor Detail
HttpURLConnection
protected HttpURLConnection(URL u)(Code)
Constructor for the HttpURLConnection.
Parameters:
  u - the URL




Method Detail
disconnect
abstract public void disconnect()(Code)
Indicates that other requests to the server are unlikely in the near future. Calling disconnect() should not imply that this HttpURLConnection instance can be reused for other requests.



getErrorStream
public InputStream getErrorStream()(Code)
Returns the error stream if the connection failed but the server sent useful data nonetheless. The typical example is when an HTTP server responds with a 404, which will cause a FileNotFoundException to be thrown in connect, but the server sent an HTML help page with suggestions as to what to do.

This method will not cause a connection to be initiated. If the connection was not connected, or if the server did not have an error while connecting or if the server had an error but no error data was sent, this method will return null. This is the default. an error stream if any, null if there have been noerrors, the connection is not connected or the server sent nouseful data.




getFollowRedirects
public static boolean getFollowRedirects()(Code)
Returns a boolean indicating whether or not HTTP redirects (3xx) should be automatically followed. true if HTTP redirects shouldbe automatically followed, false if not.
See Also:   HttpURLConnection.setFollowRedirects(boolean)



getHeaderField
public String getHeaderField(int n)(Code)
Returns the value for the nth header field. Some implementations may treat the 0th header field as special, i.e. as the status line returned by the HTTP server.

This method can be used in conjunction with the HttpURLConnection.getHeaderFieldKey getHeaderFieldKey method to iterate through all the headers in the message.
Parameters:
  n - an index, where n>=0. the value of the nth header field,or null if the value does not exist.
See Also:   java.net.HttpURLConnection.getHeaderFieldKey(int)




getHeaderFieldDate
public long getHeaderFieldDate(String name, long Default)(Code)



getHeaderFieldKey
public String getHeaderFieldKey(int n)(Code)
Returns the key for the nth header field. Some implementations may treat the 0th header field as special, i.e. as the status line returned by the HTTP server. In this case, HttpURLConnection.getHeaderField(int) getHeaderField(0) returns the status line, but getHeaderFieldKey(0) returns null.
Parameters:
  n - an index, where n >=0. the key for the nth header field,or null if the key does not exist.



getInstanceFollowRedirects
public boolean getInstanceFollowRedirects()(Code)
Returns the value of this HttpURLConnection's instanceFollowRedirects field. the value of this HttpURLConnection'sinstanceFollowRedirects field.
See Also:   java.net.HttpURLConnection.instanceFollowRedirects
See Also:   HttpURLConnection.setInstanceFollowRedirects(boolean)



getPermission
public Permission getPermission() throws IOException(Code)



getRequestMethod
public String getRequestMethod()(Code)
Get the request method. the HTTP request method
See Also:   HttpURLConnection.setRequestMethod(java.lang.String)



getResponseCode
public int getResponseCode() throws IOException(Code)
Gets the status code from an HTTP response message. For example, in the case of the following status lines:
 HTTP/1.0 200 OK
 HTTP/1.0 401 Unauthorized
 
It will return 200 and 401 respectively. Returns -1 if no code can be discerned from the response (i.e., the response is not valid HTTP).
throws:
  IOException - if an error occurred connecting to the server. the HTTP Status-Code, or -1



getResponseMessage
public String getResponseMessage() throws IOException(Code)
Gets the HTTP response message, if any, returned along with the response code from a server. From responses like:
 HTTP/1.0 200 OK
 HTTP/1.0 404 Not Found
 
Extracts the Strings "OK" and "Not Found" respectively. Returns null if none could be discerned from the responses (the result was not valid HTTP).
throws:
  IOException - if an error occurred connecting to the server. the HTTP response message, or null



setFollowRedirects
public static void setFollowRedirects(boolean set)(Code)
Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class. True by default. Applets cannot change this variable.

If there is a security manager, this method first calls the security manager's checkSetFactory method to ensure the operation is allowed. This could result in a SecurityException.
Parameters:
  set - a boolean indicating whether or notto follow HTTP redirects.
exception:
  SecurityException - if a security manager exists and its checkSetFactory method doesn't allow the operation.
See Also:   SecurityManager.checkSetFactory
See Also:   HttpURLConnection.getFollowRedirects()




setInstanceFollowRedirects
public void setInstanceFollowRedirects(boolean followRedirects)(Code)
Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnection instance.

The default value comes from followRedirects, which defaults to true.
Parameters:
  followRedirects - a boolean indicating whether or not to follow HTTP redirects.
See Also:   java.net.HttpURLConnection.instanceFollowRedirects
See Also:   HttpURLConnection.getInstanceFollowRedirects




setRequestMethod
public void setRequestMethod(String method) throws ProtocolException(Code)
Set the method for the URL request, one of:
  • GET
  • POST
  • HEAD
  • OPTIONS
  • PUT
  • DELETE
  • TRACE
are legal, subject to protocol restrictions. The default method is GET.
Parameters:
  method - the HTTP method
exception:
  ProtocolException - if the method cannot be reset or ifthe requested method isn't valid for HTTP.
See Also:   HttpURLConnection.getRequestMethod()



usingProxy
abstract public boolean usingProxy()(Code)
Indicates if the connection is going through a proxy. a boolean indicating if the connection isusing a proxy.



Fields inherited from java.net.URLConnection
protected boolean allowUserInteraction(Code)(Java Doc)
protected boolean connected(Code)(Java Doc)
protected boolean doInput(Code)(Java Doc)
protected boolean doOutput(Code)(Java Doc)
static ContentHandlerFactory factory(Code)(Java Doc)
protected long ifModifiedSince(Code)(Java Doc)
protected URL url(Code)(Java Doc)
protected boolean useCaches(Code)(Java Doc)

Methods inherited from java.net.URLConnection
public void addRequestProperty(String key, String value)(Code)(Java Doc)
abstract public void connect() throws IOException(Code)(Java Doc)
public boolean getAllowUserInteraction()(Code)(Java Doc)
public Object getContent() throws IOException(Code)(Java Doc)
public Object getContent(Class[] classes) throws IOException(Code)(Java Doc)
public String getContentEncoding()(Code)(Java Doc)
synchronized ContentHandler getContentHandler() throws UnknownServiceException(Code)(Java Doc)
public int getContentLength()(Code)(Java Doc)
public String getContentType()(Code)(Java Doc)
public long getDate()(Code)(Java Doc)
public static boolean getDefaultAllowUserInteraction()(Code)(Java Doc)
public boolean getDefaultUseCaches()(Code)(Java Doc)
public boolean getDoInput()(Code)(Java Doc)
public boolean getDoOutput()(Code)(Java Doc)
public long getExpiration()(Code)(Java Doc)
public static synchronized FileNameMap getFileNameMap()(Code)(Java Doc)
public String getHeaderField(String name)(Code)(Java Doc)
public String getHeaderField(int n)(Code)(Java Doc)
public long getHeaderFieldDate(String name, long Default)(Code)(Java Doc)
public int getHeaderFieldInt(String name, int Default)(Code)(Java Doc)
public String getHeaderFieldKey(int n)(Code)(Java Doc)
public Map getHeaderFields()(Code)(Java Doc)
public long getIfModifiedSince()(Code)(Java Doc)
public InputStream getInputStream() throws IOException(Code)(Java Doc)
public long getLastModified()(Code)(Java Doc)
public OutputStream getOutputStream() throws IOException(Code)(Java Doc)
public Permission getPermission() throws IOException(Code)(Java Doc)
public Map getRequestProperties()(Code)(Java Doc)
public String getRequestProperty(String key)(Code)(Java Doc)
public URL getURL()(Code)(Java Doc)
public boolean getUseCaches()(Code)(Java Doc)
public static String guessContentTypeFromName(String fname)(Code)(Java Doc)
public static String guessContentTypeFromStream(InputStream is) throws IOException(Code)(Java Doc)
public void setAllowUserInteraction(boolean allowuserinteraction)(Code)(Java Doc)
public static synchronized void setContentHandlerFactory(ContentHandlerFactory fac)(Code)(Java Doc)
public static void setDefaultAllowUserInteraction(boolean defaultallowuserinteraction)(Code)(Java Doc)
public void setDefaultUseCaches(boolean defaultusecaches)(Code)(Java Doc)
public void setDoInput(boolean doinput)(Code)(Java Doc)
public void setDoOutput(boolean dooutput)(Code)(Java Doc)
public static void setFileNameMap(FileNameMap map)(Code)(Java Doc)
public void setIfModifiedSince(long ifmodifiedsince)(Code)(Java Doc)
public void setRequestProperty(String key, String value)(Code)(Java Doc)
public void setUseCaches(boolean usecaches)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.