Class IOUtil
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic long
Calculates the CRC32 checksum of the specified file.static long
Calculates the CRC32 checksum of the specified file.static boolean
Copies a file to a destination.static long
copyFile
(InputStream fis, OutputStream fos) Copies one file to another.static void
Recursively delete all the files in a directory and the directory.static void
extractResourceToFile
(Class<?> clazz, String path, File file) Extracts the resource to a file.static byte[]
getResourceAsBytes
(Class<?> clazz, String res) Get the resource as a byte array.static Properties
getResourceAsProperties
(ClassLoader loader, String path) Loads the given resource as a properties object.static InputStream
getResourceAsStream
(Class<?> clazz, String res) Returns an input stream of the resource specified.static String
getResourceAsString
(Class<?> clazz, String res) Read the entire stream into a String and return it.static String
getResourceAsString
(Class<?> clazz, String res, Charset charset) Read the entire stream into a String and return it.static String
getResourcePath
(Class<?> c, String res) Get the path to a resource base on the package of given class.static byte[]
Takes a 'InputStream' and returns a byte array.static String
static String
static String
join
(Collection<String> collection, char separator) static Properties
loadPropertiesFile
(File file) Loads the given file as a Properties file.static Properties
loadPropertiesFile
(String string) Attempt to load file based on a string base filename.static URL
Make a URL from a directory and path.static void
quietClose
(InputStream stream) Quietly closes the stream.static void
quietClose
(OutputStream stream) Quietly closes the stream.static void
quietClose
(Reader reader) Quietly closes the reader.static void
quietClose
(Writer writer) Quietly closes the writer.static void
quietClose
(Connection conn) Quietly closes the connection.static void
quietClose
(ResultSet resultset) Quietly closes the resultset.static void
quietClose
(Statement stmt) Quietly closes the statement.static String
readerToString
(Reader rdr) Takes a 'Reader' and returns the contents as a string.static byte[]
readFileBytes
(File file) Reads the given file as bytesstatic String
readFileUTF8
(File file) Reads the given file as UTF-8static byte[]
readInputStreamBytes
(InputStream is, boolean close) Reads an entire file and returns the bytes.static void
storePropertiesFile
(File f, Properties properties) Stores the given file as a Properties file.static void
Unjars the given file to the given directory.static void
writeFileUTF8
(File file, String contents) Write the contents of the string out to a file in UTF-8 format.
-
Field Details
-
EMPTY
Empty""
string.- See Also:
-
UTF8
- See Also:
-
-
Method Details
-
quietClose
Quietly closes the reader.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the reader and catch any
IOException
which may be thrown and ignore it.- Parameters:
reader
- Reader to close
-
quietClose
Quietly closes the stream.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the stream and catch any
IOException
which may be thrown.- Parameters:
stream
- Stream to close
-
quietClose
Quietly closes the writer.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the Writer and catch any
IOException
which may be thrown.- Parameters:
writer
- Writer to close
-
quietClose
Quietly closes the stream.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the stream and catch any
IOException
which may be thrown.- Parameters:
stream
- Stream to close
-
quietClose
Quietly closes the statement.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the statement and catch any
SQLException
which may be thrown.- Parameters:
stmt
- Statement to close- Since:
- 1.3
-
quietClose
Quietly closes the connection.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the connection and catch any
SQLException
which may be thrown.- Parameters:
conn
- Connection to close- Since:
- 1.3
-
quietClose
Quietly closes the resultset.This avoids having to handle exceptions, and then inside of the exception handling have a try catch block to close the connection and catch any
SQLException
which may be thrown.- Parameters:
resultset
- ResultSet to close- Since:
- 1.3
-
getResourcePath
Get the path to a resource base on the package of given class.- Parameters:
c
- Class to get the package path too.res
- Name of the resource to get the path of.- Returns:
- Returns the fully quilified path to a resource.
-
getResourceAsStream
Returns an input stream of the resource specified.- Parameters:
clazz
- The classres
- The resource name- Returns:
- Returns an InputStream to the resource.
-
getResourceAsBytes
Get the resource as a byte array.- Parameters:
clazz
- The classres
- The resource name- Returns:
- a byte array
-
getResourceAsString
Read the entire stream into a String and return it.- Parameters:
clazz
- The classres
- The resource name- Returns:
- the resource string
-
getResourceAsString
Read the entire stream into a String and return it.- Parameters:
clazz
- The classres
- The resource name- Returns:
- the resource string
-
inputStreamToBytes
Takes a 'InputStream' and returns a byte array.- Parameters:
ins
- The InputStream- Returns:
- the resource byte array
-
readerToString
Takes a 'Reader' and returns the contents as a string.- Parameters:
rdr
- Producer for the string data.- Returns:
- Null if the 'Reader' is broken or empty otherwise the contents as a string.
-
copyFile
Copies a file to a destination.- Parameters:
src
- The source must be a filedest
- This can be a directory or a file.- Returns:
- True if succeeded otherwise false.
- Throws:
IOException
-
copyFile
Copies one file to another.NOTE: does not close streams.
- Parameters:
fis
- input streamfos
- output stream- Returns:
- total bytes copied.
- Throws:
IOException
-
checksum
Calculates the CRC32 checksum of the specified file.- Parameters:
fileName
- the path to the file on which to calculate the checksum- Returns:
- the checksum
- Throws:
IOException
FileNotFoundException
-
checksum
Calculates the CRC32 checksum of the specified file.- Parameters:
file
- the file on which to calculate the checksum- Returns:
- the checksum
- Throws:
IOException
FileNotFoundException
-
readInputStreamBytes
Reads an entire file and returns the bytes.- Parameters:
is
- the input streamclose
- if true, close when finished reading.- Returns:
- file bytes.
- Throws:
IOException
-
delete
Recursively delete all the files in a directory and the directory.- Parameters:
file
- the file to delete- Throws:
RuntimeException
- if there is file that can not be deleted.IOException
-
loadPropertiesFile
Loads the given file as a Properties file.- Parameters:
file
- the file to load the propertied from- Returns:
- properties loaded
- Throws:
IOException
-
storePropertiesFile
Stores the given file as a Properties file.- Throws:
IOException
-
getResourceAsProperties
public static Properties getResourceAsProperties(ClassLoader loader, String path) throws IOException Loads the given resource as a properties object.- Parameters:
loader
- The class loaderpath
- The path to the resource- Returns:
- The properties or null if not found
- Throws:
IOException
- If an error occurs reading it
-
extractResourceToFile
Extracts the resource to a file.- Parameters:
clazz
- The class, relative to which path is resolvedpath
- The path to the resourcefile
- The file to extract to- Throws:
IOException
- If an error occurs reading it
-
unjar
Unjars the given file to the given directory. Does not close the JarFile when finished.- Parameters:
jarFile
- The file to unjar.toDir
- The directory to unjar to.- Throws:
IOException
-
readFileUTF8
Reads the given file as UTF-8- Parameters:
file
- The file to read- Returns:
- The contents of the file
- Throws:
IOException
- if there is an issue reading the file.
-
readFileBytes
Reads the given file as bytes- Parameters:
file
- The file to read- Returns:
- The contents of the file
- Throws:
IOException
- if there is an issue reading the file.
-
writeFileUTF8
Write the contents of the string out to a file in UTF-8 format.- Parameters:
file
- the file to write to.contents
- the contents of the file to write to.- Throws:
IOException
- if there is an issue writing the file.NullPointerException
- if the file parameter is null.
-
makeURL
Make a URL from a directory and path.- Parameters:
dir
- directory to start from.path
- file or path to create the url.- Returns:
- URL based on the parameter provided.
- Throws:
IOException
- if the URL create from the parameters does not specify a file.
-
loadPropertiesFile
Attempt to load file based on a string base filename.- Parameters:
string
- represents the file.- Returns:
- a loaded properties file.
- Throws:
IOException
- if there is an issue.
-
join
- Parameters:
collection
- The String collectionseparator
- the separator character- Returns:
- the joined string
- Since:
- 1.3
-
join
- Parameters:
array
- an arrayseparator
- the separator character- Returns:
- the joined string
- Since:
- 1.3
-
join
- Parameters:
array
- an arrayseparator
- the separator characterstartIndex
- the start indexendIndex
- the end index- Returns:
- the joined string
- Since:
- 1.3
-