|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.InputStream
org.stanwood.media.util.WebFileInputStream
public class WebFileInputStream
Used to create a input stream to a web resource
Constructor Summary | |
---|---|
WebFileInputStream(java.net.URL url)
Open a web file. |
|
WebFileInputStream(java.net.URL url,
java.lang.String userAgent)
Open a web file. |
Method Summary | |
---|---|
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)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public WebFileInputStream(java.net.URL url) throws java.io.IOException
url
- The URL of the file to open
java.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 resources
java.io.IOException
- Thrown if their is a problem fetching the web fileMethod Detail |
---|
public 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 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |