|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FileUtil.TooManyBytesException | |
|---|---|
| com.bristle.javalib.io | |
| Uses of FileUtil.TooManyBytesException in com.bristle.javalib.io |
|---|
| Methods in com.bristle.javalib.io that throw FileUtil.TooManyBytesException | |
|---|---|
static long |
FileUtil.copyBinaryFileToStream(String strFilenameIn,
OutputStream streamOut,
long lngMaxBytes)
Copy the binary contents of the file with the specified name to the specified OutputStream, up to the specified number of bytes, returning the count of bytes written. |
static long |
FileUtil.copyBinaryFileToWriter(String strFilenameIn,
Writer writerOut,
long lngMaxBytes)
Copy the binary contents of the file with the specified name to the specified Writer, up to the specified number of bytes, returning the count of bytes written. |
static long |
FileUtil.copyBinaryStreamToFile(InputStream streamIn,
String strFilenameOut,
long lngMaxBytes)
Copy the binary contents of the specified InputStream to the file with the specified name, up to the specified number of bytes, returning the count of bytes written. |
static long |
FileUtil.copyBinaryStreamToStream(InputStream streamIn,
OutputStream streamOut,
long lngMaxBytes)
Copy the binary contents of the specified InputStream to the specified OutputStream, up to the specified number of bytes, returning the count of bytes written. |
static long |
FileUtil.copyBinaryStreamToWriter(InputStream streamIn,
Writer writerOut,
long lngMaxBytes)
Copy the binary contents of the specified InputStream to the specified Writer, up to the specified number of bytes, returning the count of bytes written. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||