Java Doc for URLConnection.java in  » Apache-Harmony-Java-SE » java-package » 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 » Apache Harmony Java SE » java package » java.net 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.net.URLConnection

All known Subclasses:   java.net.JarURLConnection,  java.net.HttpURLConnection,
URLConnection
abstract public class URLConnection (Code)
The URLConnection class is responsible for establishing a connection to an URL for a given protocol. The correct URLConnection subclass to call is determined by URLStreamHandler.openConnection().

Inner Class :static class DefaultContentHandler extends java.net.ContentHandler

Field Summary
protected  booleanallowUserInteraction
    
protected  booleanconnected
    
static  Hashtable<String, Object>contentHandlers
    
 ContentHandlerdefaultHandler
    
protected  booleandoInput
    
protected  booleandoOutput
    
protected  longifModifiedSince
    
protected  URLurl
    
protected  booleanuseCaches
    

Constructor Summary
protected  URLConnection(URL url)
    

Method Summary
public  voidaddRequestProperty(String field, String newValue)
     Adds the given request property.
abstract public  voidconnect()
     Establishes the connection to the resource specified by this URL with this method, along with other options that can only be set before this connection is made.
public  booleangetAllowUserInteraction()
    
public  intgetConnectTimeout()
    
public  ObjectgetContent()
     Answers the object pointed to by this URL.
public  ObjectgetContent(Class[] types)
     Answers the object pointed to by this URL.
public  StringgetContentEncoding()
     Answers the Content encoding type of the response body, null if no such field is found in the header response.
public  intgetContentLength()
     Answers the length of the content or body in the response header in bytes.
public  StringgetContentType()
     Answers the type of the content.
public  longgetDate()
     Answers the date in milliseconds since epoch when this response header was created, or 0 if the field Date is not found in the header.
public static  booleangetDefaultAllowUserInteraction()
     Answers whether this connection allow user interaction by default.
public static  StringgetDefaultRequestProperty(String field)
     Answers the default value for the field specified by field, null if there's no such field.
public  booleangetDefaultUseCaches()
     Answers whether this connection use caches by default.
public  booleangetDoInput()
     Answers whether this connection supports input.
public  booleangetDoOutput()
     Answers whether this connection supports output.
public  longgetExpiration()
     Answers the date in milliseconds since epoch when this response header expires or 0 if the field Expires is not found in the header.
public static  FileNameMapgetFileNameMap()
     Answers the MIME table of this URL connection.
public  StringgetHeaderField(int pos)
     Answers the value of the field at position pos.
public  StringgetHeaderField(String key)
     Answers the value of the field corresponding to the key Answers null if there is no such field.
public  longgetHeaderFieldDate(String field, long defaultValue)
     Answers the date value in the form of milliseconds since epoch corresponding to the field field.
public  intgetHeaderFieldInt(String field, int defaultValue)
     Answers the integer value of the specified field.
public  StringgetHeaderFieldKey(int posn)
     Answers the name of the field at position specified by posn, null if there are fewer than posn fields.
public  Map<String, List<String>>getHeaderFields()
     Provides an unmodifiable map of the connection header values.
public  longgetIfModifiedSince()
    
public  InputStreamgetInputStream()
     Creates an InputStream for reading from this URL Connection.
public  longgetLastModified()
    
public  OutputStreamgetOutputStream()
     Creates an OutputStream for writing to this URL Connection.
public  java.security.PermissiongetPermission()
     Answers the permissions necessary to make the connection.
public  intgetReadTimeout()
    
public  Map<String, List<String>>getRequestProperties()
     Provides an unmodifiable map of the request properties.
public  StringgetRequestProperty(String field)
     Answers the value corresponding to the field in the request Header, null if no such field exists.
public  URLgetURL()
    
public  booleangetUseCaches()
    
public static  StringguessContentTypeFromName(String url)
     Determines the MIME type of the file specified by the string URL, using the filename extension.
public static  StringguessContentTypeFromStream(InputStream is)
     Examines the bytes of the input stream and returns the MIME type, null if no content type can be deduced.
public  voidsetAllowUserInteraction(boolean newValue)
     Sets the flag indicating whether this connection allows user interaction This can only be called prior to connection establishment.
public  voidsetConnectTimeout(int timeout)
     Sets a timeout for connection to perform non-block.
public static synchronized  voidsetContentHandlerFactory(ContentHandlerFactory contentFactory)
     Sets the current content handler factory to be contentFactory.
public static  voidsetDefaultAllowUserInteraction(boolean allows)
     Set whether user interaction is allowed by default.
public static  voidsetDefaultRequestProperty(String field, String value)
    
public  voidsetDefaultUseCaches(boolean newValue)
     Set whether caches are used by default.
public  voidsetDoInput(boolean newValue)
     Sets whether this URLConnection allows input.
public  voidsetDoOutput(boolean newValue)
     Sets whether this URLConnection allows output.
public static  voidsetFileNameMap(FileNameMap map)
     With permission from the security manager, this method sets the map to be the MIME Table of this URL connection.
public  voidsetIfModifiedSince(long newValue)
     Sets the header field ifModifiedSince.
public  voidsetReadTimeout(int timeout)
     Sets a timeout for reading to perform non-block.
public  voidsetRequestProperty(String field, String newValue)
     Sets the value of the request header field field to newValue Only the current URL Connection is affected.
public  voidsetUseCaches(boolean newValue)
     Sets the flag indicating if this connection uses caches.
public  StringtoString()
    

Field Detail
allowUserInteraction
protected boolean allowUserInteraction(Code)



connected
protected boolean connected(Code)



contentHandlers
static Hashtable<String, Object> contentHandlers(Code)
Cache for storing Content handler



defaultHandler
ContentHandler defaultHandler(Code)



doInput
protected boolean doInput(Code)



doOutput
protected boolean doOutput(Code)



ifModifiedSince
protected long ifModifiedSince(Code)



url
protected URL url(Code)



useCaches
protected boolean useCaches(Code)




Constructor Detail
URLConnection
protected URLConnection(URL url)(Code)
Creates a URLConnection pointing to the resource specified by the url




Method Detail
addRequestProperty
public void addRequestProperty(String field, String newValue)(Code)
Adds the given request property. Will not overwrite any existing properties associated with the given field name.
Parameters:
  field - the request property field name
Parameters:
  newValue - the property value
throws:
  IllegalStateException - -if connection already established
throws:
  NullPointerException - -if field is null
since:
   1.4



connect
abstract public void connect() throws IOException(Code)
Establishes the connection to the resource specified by this URL with this method, along with other options that can only be set before this connection is made.
throws:
  IOException - If an error occurs while connecting
See Also:   java.io.IOException
See Also:   URLStreamHandler



getAllowUserInteraction
public boolean getAllowUserInteraction()(Code)
Answers the value of allowUserInteraction which indicates if this connection allows user interaction the value of the flag
See Also:   URLConnection.getDefaultRequestProperty
See Also:   URLConnection.setDefaultRequestProperty
See Also:   URLConnection.allowUserInteraction



getConnectTimeout
public int getConnectTimeout()(Code)
Returns a timeout of connection by milliseconds timeout of connection by milliseconds



getContent
public Object getContent() throws java.io.IOException(Code)
Answers the object pointed to by this URL. It first attempts to get the content type from getContentType(), which looks for the response header field "Content-Type". If none is found, it will guess the content type from the filename extension. If that fails, it will guess by inspecting the stream. a non-null object
throws:
  IOException - if an IO error occurred
See Also:   ContentHandler
See Also:   ContentHandlerFactory
See Also:   IOException
See Also:   URLConnection.setContentHandlerFactory



getContent
public Object getContent(Class[] types) throws IOException(Code)
Answers the object pointed to by this URL. It first attempts to get the content type from getContentType(), which looks for the response header field "Content-Type". If none is found, it will guess the content type from the filename extension. If that fails, it will guess by inspecting the stream.
Parameters:
  types - The list of acceptable content types Object The object of the resource pointed by this URL, or null ifthe content does not match a specified content type.
throws:
  IOException - If an error occurred obtaining the content.



getContentEncoding
public String getContentEncoding()(Code)
Answers the Content encoding type of the response body, null if no such field is found in the header response. The content encoding type
See Also:   URLConnection.getContentType



getContentLength
public int getContentLength()(Code)
Answers the length of the content or body in the response header in bytes. Answer -1 if Content-Length cannot be found in the response header. The length of the content
See Also:   URLConnection.getContentType



getContentType
public String getContentType()(Code)
Answers the type of the content. Answers null if there's no such field. The type of the content
See Also:   URLConnection.guessContentTypeFromName
See Also:   URLConnection.guessContentTypeFromStream



getDate
public long getDate()(Code)
Answers the date in milliseconds since epoch when this response header was created, or 0 if the field Date is not found in the header. Date in millisecond since epoch
See Also:   URLConnection.getExpiration
See Also:   URLConnection.getLastModified
See Also:   java.util.Date



getDefaultAllowUserInteraction
public static boolean getDefaultAllowUserInteraction()(Code)
Answers whether this connection allow user interaction by default. the value of defaultAllowUserInteraction
See Also:   URLConnection.getAllowUserInteraction
See Also:   URLConnection.setDefaultAllowUserInteraction
See Also:   URLConnection.setAllowUserInteraction
See Also:   URLConnection.allowUserInteraction



getDefaultRequestProperty
public static String getDefaultRequestProperty(String field)(Code)
Answers the default value for the field specified by field, null if there's no such field.
Parameters:
  field - the field to get the request property for the field to be looked up



getDefaultUseCaches
public boolean getDefaultUseCaches()(Code)
Answers whether this connection use caches by default. true if this connection use caches by default, false otherwise
See Also:   URLConnection.getUseCaches
See Also:   URLConnection.setDefaultUseCaches
See Also:   URLConnection.setUseCaches
See Also:   URLConnection.useCaches



getDoInput
public boolean getDoInput()(Code)
Answers whether this connection supports input. true if this connection supports input, false otherwise
See Also:   URLConnection.setDoInput
See Also:   URLConnection.doInput



getDoOutput
public boolean getDoOutput()(Code)
Answers whether this connection supports output. true if this connection supports output, false otherwise
See Also:   URLConnection.setDoOutput
See Also:   URLConnection.doOutput



getExpiration
public long getExpiration()(Code)
Answers the date in milliseconds since epoch when this response header expires or 0 if the field Expires is not found in the header. Date in milliseconds since epoch
See Also:   URLConnection.getHeaderField(int)
See Also:   URLConnection.getHeaderField(String)
See Also:   URLConnection.getHeaderFieldDate(String,long)
See Also:   URLConnection.getHeaderFieldInt(String,int)
See Also:   URLConnection.getHeaderFieldKey(int)



getFileNameMap
public static FileNameMap getFileNameMap()(Code)
Answers the MIME table of this URL connection. FileNameMap



getHeaderField
public String getHeaderField(int pos)(Code)
Answers the value of the field at position pos. Answers null if there are fewer than pos fields in the response header.
Parameters:
  pos - the position of the field The value of the field
See Also:   URLConnection.getHeaderFieldDate
See Also:   URLConnection.getHeaderFieldInt
See Also:   URLConnection.getHeaderFieldKey



getHeaderField
public String getHeaderField(String key)(Code)
Answers the value of the field corresponding to the key Answers null if there is no such field.
Parameters:
  key - the name of the header field The value of the header field
See Also:   URLConnection.getHeaderFieldDate
See Also:   URLConnection.getHeaderFieldInt
See Also:   URLConnection.getHeaderFieldKey



getHeaderFieldDate
public long getHeaderFieldDate(String field, long defaultValue)(Code)
Answers the date value in the form of milliseconds since epoch corresponding to the field field. Answers defaultValue if no such field can be found in the response header.
Parameters:
  field - the field in question
Parameters:
  defaultValue - the default value if no field is found or the value is invalid milliseconds since epoch
See Also:   URLConnection.ifModifiedSince
See Also:   URLConnection.setIfModifiedSince



getHeaderFieldInt
public int getHeaderFieldInt(String field, int defaultValue)(Code)
Answers the integer value of the specified field. Answers default value defaultValue if no such field exists.
Parameters:
  field - the field to return
Parameters:
  defaultValue - to be returned if field> does not exist value of the field



getHeaderFieldKey
public String getHeaderFieldKey(int posn)(Code)
Answers the name of the field at position specified by posn, null if there are fewer than posn fields.
Parameters:
  posn - the position to look for; the first field being 0 the name of the field
See Also:   URLConnection.getHeaderFieldDate
See Also:   URLConnection.getHeaderFieldInt
See Also:   URLConnection.getHeaderField(int)
See Also:   URLConnection.getHeaderField(String)
See Also:   URLConnection.getHeaderFieldDate(String,long)
See Also:   URLConnection.getHeaderFieldInt(String,int)
See Also:   URLConnection.getHeaderFieldKey(int)



getHeaderFields
public Map<String, List<String>> getHeaderFields()(Code)
Provides an unmodifiable map of the connection header values. The map keys are the String header field names. Each map value is a List of the header field values associated with that key name. the mapping of header field names to values
since:
   1.4



getIfModifiedSince
public long getIfModifiedSince()(Code)
Answers the value of ifModifiedSince of this connection in milliseconds since epoch the time since epoch
See Also:   URLConnection.ifModifiedSince
See Also:   URLConnection.setIfModifiedSince



getInputStream
public InputStream getInputStream() throws IOException(Code)
Creates an InputStream for reading from this URL Connection. It throws UnknownServiceException by default. This method should be overridden by its subclasses The InputStream to read from
throws:
  IOException - If an InputStream could not be created
See Also:   URLConnection.getContent()
See Also:   URLConnection.getContent(Class[])
See Also:   URLConnection.getOutputStream
See Also:   java.io.InputStream
See Also:   java.io.IOException



getLastModified
public long getLastModified()(Code)
Answers the value of the field Last-Modified in the response header, 0 if no such field exists the value of the field last modified
See Also:   java.util.Date
See Also:   URLConnection.getDate
See Also:   URLConnection.getExpiration



getOutputStream
public OutputStream getOutputStream() throws IOException(Code)
Creates an OutputStream for writing to this URL Connection. It throws UnknownServiceException by default. This method should be overridden by subclasses. The OutputStream to write to
throws:
  IOException - If an OutputStream could not be created
See Also:   URLConnection.getContent()
See Also:   URLConnection.getContent(Class[])
See Also:   URLConnection.getInputStream
See Also:   java.io.IOException



getPermission
public java.security.Permission getPermission() throws IOException(Code)
Answers the permissions necessary to make the connection. Depending on the protocol, this can be any of the permission subclasses. The permission returned may also depend on the state of the connection, E.G In the case of HTTP, redirection can change the applicable permission if the host changed.

By default, this methods returns AllPermission. Subclasses should override this and return the appropriate permission object. the permission object governing the connection
throws:
  IOException - if an IO exception occurs during the creation of thepermission object.




getReadTimeout
public int getReadTimeout()(Code)
Returns a timeout of reading by milliseconds timeout of reading by milliseconds



getRequestProperties
public Map<String, List<String>> getRequestProperties()(Code)
Provides an unmodifiable map of the request properties. The map keys are Strings, the map values are each a List of Strings, with each request property name mapped to its corresponding property values. the mapping of request property names to values
since:
   1.4



getRequestProperty
public String getRequestProperty(String field)(Code)
Answers the value corresponding to the field in the request Header, null if no such field exists.
Parameters:
  field - the field to get the property for the field to look up
throws:
  IllegalStateException - -if connection already established
See Also:   URLConnection.getDefaultRequestProperty
See Also:   URLConnection.setDefaultRequestProperty
See Also:   URLConnection.setRequestProperty



getURL
public URL getURL()(Code)
Answers the URL of this connection the URL of this connection
See Also:   URL
See Also:   URLConnection.URLConnection(URL)



getUseCaches
public boolean getUseCaches()(Code)
Answers whether this connection uses caches the value of the flag



guessContentTypeFromName
public static String guessContentTypeFromName(String url)(Code)
Determines the MIME type of the file specified by the string URL, using the filename extension. Any fragment identifier is removed before processing.
Parameters:
  url - the MIME type of the file. the string representation of an URL
See Also:   FileNameMap
See Also:   FileNameMap.getContentTypeFor(String)
See Also:   URLConnection.getContentType
See Also:   URLConnection.guessContentTypeFromStream



guessContentTypeFromStream
public static String guessContentTypeFromStream(InputStream is) throws IOException(Code)
Examines the bytes of the input stream and returns the MIME type, null if no content type can be deduced.
Parameters:
  is - the input stream for the URL the type of the input stream
throws:
  IOException - If an IO error occurs



setAllowUserInteraction
public void setAllowUserInteraction(boolean newValue)(Code)
Sets the flag indicating whether this connection allows user interaction This can only be called prior to connection establishment.
Parameters:
  newValue - the value of the flag to be set
throws:
  IllegalStateException - if this method attempts to change the flag after a connectionhas been established



setConnectTimeout
public void setConnectTimeout(int timeout)(Code)
Sets a timeout for connection to perform non-block. Default is zero. Timeout of zero means infinite.
Parameters:
  timeout - timeout for connection in milliseconds.
throws:
  IllegalArgumentException - if timeout is less than zero.



setContentHandlerFactory
public static synchronized void setContentHandlerFactory(ContentHandlerFactory contentFactory)(Code)
Sets the current content handler factory to be contentFactory. It can only do so with the permission of the security manager. The ContentFactory can only be specified once during the lifetime of an application.
Parameters:
  contentFactory - the factory
throws:
  Error - if a ContentFactory has been created before SecurityExceptionif the security manager does not allow this action
See Also:   ContentHandler
See Also:   ContentHandlerFactory
See Also:   java.lang.SecurityException
See Also:   java.lang.SecurityManager.checkSetFactory



setDefaultAllowUserInteraction
public static void setDefaultAllowUserInteraction(boolean allows)(Code)
Set whether user interaction is allowed by default. Existing URLConnections are unaffected.
Parameters:
  allows - allow user interaction



setDefaultRequestProperty
public static void setDefaultRequestProperty(String field, String value)(Code)
Sets the field in the default request header with the value value
Parameters:
  field - the request header field to be set
Parameters:
  value - the new value



setDefaultUseCaches
public void setDefaultUseCaches(boolean newValue)(Code)
Set whether caches are used by default. Existing URLConnections are unaffected.
Parameters:
  newValue - the value of the flag to be set
See Also:   URLConnection.getDefaultUseCaches
See Also:   URLConnection.getUseCaches
See Also:   URLConnection.setUseCaches
See Also:   URLConnection.useCaches



setDoInput
public void setDoInput(boolean newValue)(Code)
Sets whether this URLConnection allows input. It cannot be set after the connection is made.
Parameters:
  newValue - boolean
throws:
  IllegalAccessError - Exception thrown when this method attempts to change thevalue after connected
See Also:   URLConnection.doInput
See Also:   URLConnection.getDoInput
See Also:   URLConnection.setDoInput
See Also:   java.lang.IllegalAccessError



setDoOutput
public void setDoOutput(boolean newValue)(Code)
Sets whether this URLConnection allows output. It cannot be set after the connection is made.
Parameters:
  newValue - boolean
throws:
  IllegalAccessError - Exception thrown when this method attempts to change thevalue after connected
See Also:   URLConnection.doOutput
See Also:   URLConnection.getDoOutput
See Also:   URLConnection.setDoOutput
See Also:   java.lang.IllegalAccessError



setFileNameMap
public static void setFileNameMap(FileNameMap map)(Code)
With permission from the security manager, this method sets the map to be the MIME Table of this URL connection.
Parameters:
  map - the MIME table to be set.



setIfModifiedSince
public void setIfModifiedSince(long newValue)(Code)
Sets the header field ifModifiedSince.
Parameters:
  newValue - number of milliseconds since epoch
throws:
  IllegalStateException - if already connected.



setReadTimeout
public void setReadTimeout(int timeout)(Code)
Sets a timeout for reading to perform non-block. Default is zero. Timeout of zero means infinite.
Parameters:
  timeout - timeout for reading in milliseconds.
throws:
  IllegalArgumentException - if timeout is less than zero.



setRequestProperty
public void setRequestProperty(String field, String newValue)(Code)
Sets the value of the request header field field to newValue Only the current URL Connection is affected. It can only be called before the connection is made
Parameters:
  field - the field
Parameters:
  newValue - the field's new value
throws:
  IllegalStateException - -if connection already established
throws:
  NullPointerException - -if field is null
See Also:   URLConnection.getDefaultRequestProperty
See Also:   URLConnection.setDefaultRequestProperty
See Also:   URLConnection.getRequestProperty



setUseCaches
public void setUseCaches(boolean newValue)(Code)
Sets the flag indicating if this connection uses caches. This value cannot be set after the connection is made.
Parameters:
  newValue - the value of the flag to be set
throws:
  IllegalStateException - Exception thrown when this method attempts to change thevalue after connected
See Also:   URLConnection.getDefaultUseCaches
See Also:   URLConnection.setDefaultUseCaches
See Also:   URLConnection.getUseCaches
See Also:   URLConnection.useCaches



toString
public String toString()(Code)
Answers the name of the class of the URLConnection The string representation of this URLConnection
See Also:   URLConnection.getURL
See Also:   URLConnection.URLConnection(URL)



Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final public Class<? extends Object> getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify()(Code)(Java Doc)
final public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait(long millis, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait(long millis) 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.