public class WebFileInputStream
extends java.io.InputStream
Constructor and Description |
---|
WebFileInputStream(java.net.URL url)
Open a web file.
|
WebFileInputStream(java.net.URL url,
java.lang.String userAgent)
Open a web file.
|
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
java.lang.String |
getCharset()
Used to get the charset of the stream
|
java.util.Map<java.lang.String,java.util.List<java.lang.String>> |
getHeaderFields()
Get the response header.
|
java.lang.String |
getMIMEType()
Get the MIME type.
|
int |
getResponseCode()
Get the response code.
|
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
public WebFileInputStream(java.net.URL url) throws java.io.IOException
url
- The URL of the file to openjava.io.IOException
- Thrown if their is a problem fetching the web filepublic WebFileInputStream(java.net.URL url, java.lang.String userAgent) throws java.io.IOException
url
- The URL of the file to openuserAgent
- The user agent to use when access web resourcesjava.io.IOException
- Thrown if their is a problem fetching the web filepublic int getResponseCode()
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getHeaderFields()
public java.lang.String getCharset()
public java.lang.String getMIMEType()
public int read() throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public int available() throws java.io.IOException
available
in class java.io.InputStream
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.InputStream
java.io.IOException
public int read(byte[] b) throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public int read(byte[] b, int off, int len) throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public long skip(long n) throws java.io.IOException
skip
in class java.io.InputStream
java.io.IOException
public void mark(int readlimit)
mark
in class java.io.InputStream
public void reset() throws java.io.IOException
reset
in class java.io.InputStream
java.io.IOException
public boolean markSupported()
markSupported
in class java.io.InputStream