Class IOUtils
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Charset
UTF-8Charset
instance to prevent repeatedCharset.forName(String)
lookupsstatic final String
UTF-8 charset string -
Method Summary
Modifier and TypeMethodDescriptionstatic void
Closes all given Closeables.static void
Closes all given Closeables.static <E extends Exception>
voidcloseWhileHandlingException
(E priorException, Closeable... objects) Closes all given Closeables, suppressing all thrown exceptions.static <E extends Exception>
voidcloseWhileHandlingException
(E priorException, Iterable<? extends Closeable> objects) Closes all given Closeables, suppressing all thrown exceptions.static void
closeWhileHandlingException
(Closeable... objects) Closes all given Closeables, suppressing all thrown exceptions.static void
closeWhileHandlingException
(Iterable<? extends Closeable> objects) Closes all given Closeables, suppressing all thrown exceptions.static void
Copy one file's contents to another file.static void
deleteFilesIgnoringExceptions
(Directory dir, String... files) Deletes all given files, suppressing all thrown IOExceptions.static Reader
getDecodingReader
(File file, Charset charSet) Opens a Reader for the givenFile
using aCharsetDecoder
.static Reader
getDecodingReader
(InputStream stream, Charset charSet) Wrapping the givenInputStream
in a reader using aCharsetDecoder
.static Reader
getDecodingReader
(Class<?> clazz, String resource, Charset charSet) Opens a Reader for the given resource using aCharsetDecoder
.static void
Simple utilty method that takes a previously caughtThrowable
and rethrows eitherIOException
or an unchecked exception.static void
Simple utilty method that takes a previously caughtThrowable
and rethrows it as an unchecked exception.
-
Field Details
-
UTF_8
UTF-8 charset string- See Also:
-
CHARSET_UTF_8
UTF-8Charset
instance to prevent repeatedCharset.forName(String)
lookups
-
-
Method Details
-
closeWhileHandlingException
public static <E extends Exception> void closeWhileHandlingException(E priorException, Closeable... objects) throws E, IOException Closes all given Closeables, suppressing all thrown exceptions. Some of the Closeables may be null, they are ignored. After everything is closed, method either throws priorException, if one is supplied, or the first of suppressed exceptions, or completes normally.
Sample usage:
Closeable resource1 = null, resource2 = null, resource3 = null; ExpectedException priorE = null; try { resource1 = ...; resource2 = ...; resource3 = ...; // Acquisition may throw ExpectedException ..do..stuff.. // May throw ExpectedException } catch (ExpectedException e) { priorE = e; } finally { closeWhileHandlingException(priorE, resource1, resource2, resource3); }
- Parameters:
priorException
- null or an exception that will be rethrown after method completionobjects
- objects to call close() on- Throws:
E
IOException
-
closeWhileHandlingException
public static <E extends Exception> void closeWhileHandlingException(E priorException, Iterable<? extends Closeable> objects) throws E, IOException Closes all given Closeables, suppressing all thrown exceptions.- Throws:
E
IOException
- See Also:
-
close
Closes all given Closeables. Some of the Closeables may be null; they are ignored. After everything is closed, the method either throws the first exception it hit while closing, or completes normally if there were no exceptions.- Parameters:
objects
- objects to call close() on- Throws:
IOException
-
close
Closes all given Closeables.- Throws:
IOException
- See Also:
-
closeWhileHandlingException
Closes all given Closeables, suppressing all thrown exceptions. Some of the Closeables may be null, they are ignored.- Parameters:
objects
- objects to call close() on
-
closeWhileHandlingException
Closes all given Closeables, suppressing all thrown exceptions.- See Also:
-
getDecodingReader
Wrapping the givenInputStream
in a reader using aCharsetDecoder
. Unlike Java's defaults this reader will throw an exception if your it detects the read charset doesn't match the expectedCharset
.Decoding readers are useful to load configuration files, stopword lists or synonym files to detect character set problems. However, its not recommended to use as a common purpose reader.
- Parameters:
stream
- the stream to wrap in a readercharSet
- the expected charset- Returns:
- a wrapping reader
-
getDecodingReader
Opens a Reader for the givenFile
using aCharsetDecoder
. Unlike Java's defaults this reader will throw an exception if your it detects the read charset doesn't match the expectedCharset
.Decoding readers are useful to load configuration files, stopword lists or synonym files to detect character set problems. However, its not recommended to use as a common purpose reader.
- Parameters:
file
- the file to open a reader oncharSet
- the expected charset- Returns:
- a reader to read the given file
- Throws:
IOException
-
getDecodingReader
public static Reader getDecodingReader(Class<?> clazz, String resource, Charset charSet) throws IOException Opens a Reader for the given resource using aCharsetDecoder
. Unlike Java's defaults this reader will throw an exception if your it detects the read charset doesn't match the expectedCharset
.Decoding readers are useful to load configuration files, stopword lists or synonym files to detect character set problems. However, its not recommended to use as a common purpose reader.
- Parameters:
clazz
- the class used to locate the resourceresource
- the resource name to loadcharSet
- the expected charset- Returns:
- a reader to read the given file
- Throws:
IOException
-
deleteFilesIgnoringExceptions
Deletes all given files, suppressing all thrown IOExceptions.Note that the files should not be null.
-
copy
Copy one file's contents to another file. The target will be overwritten if it exists. The source must exist.- Throws:
IOException
-
reThrow
Simple utilty method that takes a previously caughtThrowable
and rethrows eitherIOException
or an unchecked exception. If the argument is null then this method does nothing.- Throws:
IOException
-
reThrowUnchecked
Simple utilty method that takes a previously caughtThrowable
and rethrows it as an unchecked exception. If the argument is null then this method does nothing.
-