public class IOUtils extends Object
| Constructor and Description |
|---|
IOUtils() |
| Modifier and Type | Method and Description |
|---|---|
static long |
computeLength(StreamingContent content)
Computes and returns the byte content length for a streaming content by calling
StreamingContent.writeTo(OutputStream) on a fake output stream that only counts bytes
written. |
static void |
copy(InputStream inputStream,
OutputStream outputStream)
Writes the content provided by the given source input stream into the given destination output
stream.
|
static void |
copy(InputStream inputStream,
OutputStream outputStream,
boolean closeInputStream)
Writes the content provided by the given source input stream into the given destination output
stream, optionally closing the input stream.
|
static <S extends Serializable> |
deserialize(byte[] bytes)
Beta Deserializes the given byte array into to a newly allocated object. |
static <S extends Serializable> |
deserialize(InputStream inputStream)
Beta Deserializes the given input stream into to a newly allocated object, and close the input stream. |
static boolean |
isSymbolicLink(File file)
Beta Returns whether the given file is a symbolic link. |
static byte[] |
serialize(Object value)
Beta Serializes the given object value to a newly allocated byte array. |
static void |
serialize(Object value,
OutputStream outputStream)
Beta Serializes the given object value to an output stream, and close the output stream. |
public static void copy(InputStream inputStream, OutputStream outputStream) throws IOException
The input stream is guaranteed to be closed at the end of this method.
Sample use:
static void copy(InputStream inputStream, File file) throws IOException {
FileOutputStream out = new FileOutputStream(file);
try {
IOUtils.copy(inputStream, out);
} finally {
out.close();
}
}
inputStream - source input streamoutputStream - destination output streamIOExceptionpublic static void copy(InputStream inputStream, OutputStream outputStream, boolean closeInputStream) throws IOException
Sample use:
static void copy(InputStream inputStream, File file) throws IOException {
FileOutputStream out = new FileOutputStream(file);
try {
IOUtils.copy(inputStream, out, true);
} finally {
out.close();
}
}
inputStream - source input streamoutputStream - destination output streamcloseInputStream - whether the input stream should be closed at the end of this methodIOExceptionpublic static long computeLength(StreamingContent content) throws IOException
StreamingContent.writeTo(OutputStream) on a fake output stream that only counts bytes
written.content - streaming contentIOException@Beta public static byte[] serialize(Object value) throws IOException
Beta value - object value to serializeIOException@Beta public static void serialize(Object value, OutputStream outputStream) throws IOException
Beta value - object value to serializeoutputStream - output stream to serialize intoIOException@Beta public static <S extends Serializable> S deserialize(byte[] bytes) throws IOException
Beta bytes - byte array to deserialize or null for null resultnull for null inputIOException@Beta public static <S extends Serializable> S deserialize(InputStream inputStream) throws IOException
Beta inputStream - input stream to deserializeIOException@Beta public static boolean isSymbolicLink(File file) throws IOException
Beta IOExceptionCopyright © 2011-2013 Google. All Rights Reserved.