public final class FileTools
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.nio.file.CopyOption[] |
EMPTY_COPY_OPTION_ARRAY |
static java.nio.file.LinkOption[] |
EMPTY_LINK_OPTION_ARRAY |
static java.lang.String |
SLASH |
Modifier and Type | Method and Description |
---|---|
static java.io.File |
atomicMove(java.io.File src,
java.io.File dst) |
static java.lang.String |
combineRelativePathsAsNeeded(java.lang.String outerPath,
java.lang.String innerPath)
Combines a relative path pointing to a dir with a relative path starting from that dir and moving up
by taking away path elements on both sides until we get a direct path to the file.
|
static boolean |
containsInvalidFilenameChars(java.lang.String filename) |
static long |
copy(java.io.InputStream is,
java.io.DataOutput os,
long maxlen) |
static long |
copy(java.io.InputStream is,
java.io.OutputStream os) |
static long |
copy(java.io.InputStream is,
java.io.OutputStream os,
boolean forceFSSync) |
static long |
copy(java.io.InputStream is,
java.io.OutputStream os,
boolean forceFSSync,
boolean closeOutputStream) |
static long |
copy(java.io.InputStream is,
java.io.OutputStream os,
boolean forceFSSync,
boolean closeOutputStream,
long maxlen) |
static long |
copy(java.io.InputStream is,
java.io.OutputStream os,
long maxlen) |
static java.lang.String |
copyAndDigest(java.io.InputStream is,
java.io.File f,
java.lang.String algo)
Reads binary data from the given InputStream and writes it to the given file, while digesting / calculating some hash using the given hash-algorithm.
|
static java.lang.String |
copyAndDigest(java.io.InputStream is,
java.io.File f,
java.lang.String algo,
boolean forceFSSync) |
static void |
copyFile(java.io.File src,
java.io.File dst) |
static void |
copyFile(java.io.File src,
java.io.File dst,
boolean forceFSSync) |
static java.io.BufferedReader |
getBufferedReader(java.io.File f) |
static java.io.BufferedReader |
getBufferedReader(java.io.File f,
java.lang.String charsetName) |
static java.io.BufferedReader |
getBufferedReader(java.io.InputStream is) |
static java.io.BufferedReader |
getBufferedReader(java.io.InputStream is,
java.lang.String charsetName) |
static java.io.BufferedReader |
getBufferedReader(java.nio.file.Path path) |
static java.io.BufferedReader |
getBufferedReader(java.nio.file.Path path,
java.lang.String charsetName) |
static java.io.BufferedReader |
getBufferedReader(java.nio.channels.ReadableByteChannel channel) |
static java.io.BufferedReader |
getBufferedReader(java.nio.channels.ReadableByteChannel channel,
java.lang.String charsetName) |
static java.io.BufferedReader |
getBufferedReader(java.lang.String s) |
static java.io.BufferedReader |
getBufferedReader(java.lang.String s,
java.lang.String charsetName) |
static java.lang.String |
getErrortextIfContainsInvalidFilenameChars(java.lang.String filename,
java.lang.String attrName,
java.lang.String boDesc) |
static java.lang.String |
getFilenameExtension(java.lang.String filename)
Get the extension of a filename
|
static java.lang.String |
getFilenameFromPath(java.lang.String path) |
static java.lang.String |
getFilenameNamePart(java.lang.String filename) |
static java.lang.String |
getHashForBytes(java.lang.String algo,
byte[] bytes) |
static java.lang.String |
getHashForFile(java.lang.String algo,
java.io.File f) |
static long |
getLinesCount(java.io.File f)
Determines and returns the number of lines of a (text) file.
|
static long |
getLinesCount(java.lang.String filename)
Convenience frontend for getLinesCount( File ).
|
static java.io.File |
getTempDir() |
static java.nio.file.Path |
getTempDirPath()
returns the temporary directory, where temporary files containing information
for the Asciidoc report (images, theme file) are to be placed in
|
static java.lang.String |
inputStreamToString(java.io.InputStream is) |
static java.lang.String |
inputStreamToString(java.io.InputStream is,
java.lang.String charsetName) |
static boolean |
isAtomicMoveSupported(java.io.File src,
java.io.File dst) |
static boolean |
isDirectory(java.io.File dir)
Tests whether the passed file is a directory.
|
static boolean |
isEmptyDir(java.io.File dir)
Tests whether the passed file is a directory that is empty.
|
static boolean |
isNonIgnoredFilenameWithOneOfSuffixes(java.io.File f,
java.util.Collection<java.lang.String> suffixes)
Determines if the passed file has a suffix that is part of the passed list of suffixes
and not one of the
isStandardIgnoreFilename(String) . |
static boolean |
isStandardIgnoreFilename(java.lang.String filename)
Checks if the given filename (without path please!)
|
static java.lang.String |
loadFile(java.io.File f)
Routine that reads in a text file buffered and returns it as a string.
|
static java.lang.String |
loadFile(java.io.File f,
java.lang.String charsetName) |
static java.lang.String |
loadFile(java.nio.file.Path p) |
static java.lang.String |
loadFile(java.nio.file.Path p,
java.lang.String charsetName) |
static java.lang.String |
loadFile(java.lang.String filename)
Routine that reads in a text file buffered and returns it as a string.
|
static java.lang.String |
loadFile(java.lang.String filename,
java.lang.String charsetName) |
static java.nio.channels.ReadableByteChannel |
newChannel(java.lang.String s) |
static java.nio.channels.ReadableByteChannel |
newChannel(java.lang.String s,
int bufferSize) |
static java.nio.channels.ReadableByteChannel |
newChannel(java.lang.String s,
int bufferSize,
java.lang.String charsetName) |
static java.nio.channels.ReadableByteChannel |
newChannel(java.lang.String s,
java.lang.String charsetName) |
static java.io.InputStream |
newInputStream(java.io.File f) |
static java.io.InputStream |
newInputStream(java.nio.file.Path path) |
static java.io.InputStream |
newInputStream(java.lang.String s) |
static java.io.InputStream |
newInputStream(java.lang.String s,
java.nio.charset.Charset charset) |
static java.io.InputStream |
newInputStream(java.lang.String s,
int bufferSize) |
static java.io.InputStream |
newInputStream(java.lang.String s,
int bufferSize,
java.nio.charset.Charset charset) |
static java.io.InputStream |
newInputStream(java.lang.String s,
int bufferSize,
java.lang.String charsetName) |
static java.io.InputStream |
newInputStream(java.lang.String s,
java.lang.String charsetName) |
static java.nio.channels.FileChannel |
newReadingFileChannel(java.io.File f) |
static java.nio.channels.FileChannel |
newReadingFileChannel(java.nio.file.Path path) |
static boolean |
open(java.io.File f)
Opens the default application for the file (if supported)
|
static java.lang.String |
packageToFilePath(java.lang.String pack) |
static byte[] |
read(java.io.File f) |
static byte[] |
read(java.io.InputStream is) |
static java.lang.String |
readIntoString(java.io.BufferedReader br)
Reads a text via the given
BufferedReader and closes it afterwards. |
static java.lang.String |
readIntoString(java.io.InputStream is)
reads input from a given
InputStream with a
blocksize of 4096 and the given codepage (UTF-8 as default) |
static java.lang.String |
readIntoString(java.io.InputStream is,
java.lang.String charsetName) |
static java.util.List |
readLines(java.io.File f)
reads the given File f and returns a list of the number of specified lines
(or all lines if number is passed as -1) as List
|
static java.util.List |
readLines(java.io.File f,
long linesToRead)
reads the given File f and returns a list of the number of specified lines
(or all lines if number is passed as -1) as List
|
static java.util.List |
readLines(java.io.File f,
long linesToRead,
java.lang.String charsetName) |
static java.util.List |
readLines(java.io.File f,
java.lang.String charsetName) |
static java.util.List |
readLines(java.io.File f,
java.lang.String charsetName,
long _linesToRead) |
static java.lang.String |
replaceInvalidFilenameChars(java.lang.String filename) |
static void |
saveFile(byte[] bytes,
java.io.File f) |
static void |
saveFile(byte[] bytes,
java.io.File f,
boolean forceFSSync) |
static void |
saveFile(byte[] bytes,
java.io.File f,
boolean forceFSSync,
boolean append) |
static void |
saveFile(byte[] bytes,
java.io.OutputStream fos) |
static void |
saveFile(java.io.InputStream is,
java.io.File target)
Writes the given
InputStream to a given File . |
static void |
saveFile(java.io.InputStream is,
java.io.File target,
boolean forceFSSync) |
static void |
saveFile(java.io.InputStream is,
java.io.File target,
boolean forceFSSync,
boolean append) |
static void |
saveFile(java.lang.String s,
java.io.File f)
Writes the given String s into File f using the encoding charsetName.
|
static void |
saveFile(java.lang.String s,
java.io.File f,
java.lang.String charsetName) |
static void |
saveFile(java.lang.String s,
java.io.File f,
java.lang.String charsetName,
boolean forceFSSync) |
static void |
saveFile(java.lang.String s,
java.io.File f,
java.lang.String charsetName,
boolean forceFSSync,
boolean append) |
static java.lang.String[] |
splitFilenameAndExtension(java.lang.String filename) |
static void |
testDir(java.io.File dir)
Deprecated.
please use FileTools#isDirectory instead
|
public static final java.nio.file.LinkOption[] EMPTY_LINK_OPTION_ARRAY
public static final java.nio.file.CopyOption[] EMPTY_COPY_OPTION_ARRAY
public static final java.lang.String SLASH
public static java.io.File getTempDir()
public static java.nio.file.Path getTempDirPath()
@Deprecated public static void testDir(java.io.File dir)
dir
- the file to checkjava.lang.IllegalArgumentException
- if no file was passed, the passed file does not exist or the passed file is not a directory.public static boolean isDirectory(java.io.File dir)
dir
- the file to checkjava.lang.IllegalArgumentException
- if no file was passed or the passed file does not existpublic static boolean isEmptyDir(java.io.File dir)
dir
- the file to checkjava.lang.IllegalArgumentException
- if no file was passed, the file does not exist or is not a directorypublic static java.lang.String loadFile(java.lang.String filename)
public static java.lang.String loadFile(java.lang.String filename, java.lang.String charsetName)
public static java.lang.String loadFile(java.io.File f)
public static java.lang.String loadFile(java.io.File f, java.lang.String charsetName)
public static java.lang.String loadFile(java.nio.file.Path p)
public static java.lang.String loadFile(java.nio.file.Path p, java.lang.String charsetName)
public static java.lang.String inputStreamToString(java.io.InputStream is) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.lang.String inputStreamToString(java.io.InputStream is, java.lang.String charsetName) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.lang.String readIntoString(java.io.InputStream is) throws java.io.IOException, java.io.UnsupportedEncodingException
InputStream
with a
blocksize of 4096 and the given codepage (UTF-8 as default)is
- the InputStream
to read fromcharsetName
- the name of the Charset to useString
readed from the InputStreamIOException,
- UnsupportedEncodingExceptionjava.io.IOException
java.io.UnsupportedEncodingException
public static java.lang.String readIntoString(java.io.InputStream is, java.lang.String charsetName) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.lang.String readIntoString(java.io.BufferedReader br) throws java.io.IOException
BufferedReader
and closes it afterwards.br
- the BufferedReader
to read fromString
read from the BufferedReaderIOException,
- UnsupportedEncodingExceptionjava.io.IOException
public static java.nio.channels.FileChannel newReadingFileChannel(java.io.File f) throws java.io.IOException
java.io.IOException
public static java.nio.channels.FileChannel newReadingFileChannel(java.nio.file.Path path) throws java.io.IOException
java.io.IOException
public static java.io.InputStream newInputStream(java.io.File f) throws java.io.IOException
java.io.IOException
public static java.io.InputStream newInputStream(java.nio.file.Path path) throws java.io.IOException
java.io.IOException
public static java.io.InputStream newInputStream(java.lang.String s, java.lang.String charsetName)
public static java.io.InputStream newInputStream(java.lang.String s, int bufferSize, java.lang.String charsetName)
public static java.io.InputStream newInputStream(java.lang.String s)
public static java.io.InputStream newInputStream(java.lang.String s, java.nio.charset.Charset charset)
public static java.io.InputStream newInputStream(java.lang.String s, int bufferSize)
public static java.io.InputStream newInputStream(java.lang.String s, int bufferSize, java.nio.charset.Charset charset)
public static java.nio.channels.ReadableByteChannel newChannel(java.lang.String s)
public static java.nio.channels.ReadableByteChannel newChannel(java.lang.String s, java.lang.String charsetName)
public static java.nio.channels.ReadableByteChannel newChannel(java.lang.String s, int bufferSize)
public static java.nio.channels.ReadableByteChannel newChannel(java.lang.String s, int bufferSize, java.lang.String charsetName)
public static java.io.BufferedReader getBufferedReader(java.io.File f) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.io.File f, java.lang.String charsetName) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.nio.file.Path path) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.nio.file.Path path, java.lang.String charsetName) throws java.io.IOException, java.io.UnsupportedEncodingException
java.io.IOException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.nio.channels.ReadableByteChannel channel) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.nio.channels.ReadableByteChannel channel, java.lang.String charsetName) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.lang.String s) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.lang.String s, java.lang.String charsetName) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.io.InputStream is) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static java.io.BufferedReader getBufferedReader(java.io.InputStream is, java.lang.String charsetName) throws java.io.UnsupportedEncodingException
java.io.UnsupportedEncodingException
public static void saveFile(java.lang.String s, java.io.File f)
public static void saveFile(java.lang.String s, java.io.File f, java.lang.String charsetName)
public static void saveFile(java.lang.String s, java.io.File f, java.lang.String charsetName, boolean forceFSSync)
public static void saveFile(java.lang.String s, java.io.File f, java.lang.String charsetName, boolean forceFSSync, boolean append)
public static void saveFile(byte[] bytes, java.io.File f)
public static void saveFile(byte[] bytes, java.io.File f, boolean forceFSSync)
public static void saveFile(byte[] bytes, java.io.File f, boolean forceFSSync, boolean append)
public static void saveFile(java.io.InputStream is, java.io.File target)
InputStream
to a given File
.is
- the InputStream
to read fromtarget
- File to be written toforceFSSync
- flag to force all system buffers to synchronize with the underlying device. (see also FileDescriptor.sync()
)append
- flag if true, then bytes will be written to the end of the file rather than the beginningIRuntimeException
- Wrapping FileNotFoundException
, SyncFailedException
or IOException
that may occur during the execution.public static void saveFile(java.io.InputStream is, java.io.File target, boolean forceFSSync)
public static void saveFile(java.io.InputStream is, java.io.File target, boolean forceFSSync, boolean append)
public static void saveFile(byte[] bytes, java.io.OutputStream fos)
public static java.util.List readLines(java.io.File f, long linesToRead)
public static java.util.List readLines(java.io.File f, long linesToRead, java.lang.String charsetName)
public static java.util.List readLines(java.io.File f)
public static java.util.List readLines(java.io.File f, java.lang.String charsetName)
public static java.util.List readLines(java.io.File f, java.lang.String charsetName, long _linesToRead)
public static byte[] read(java.io.File f) throws java.io.IOException, java.io.FileNotFoundException
java.io.IOException
java.io.FileNotFoundException
public static byte[] read(java.io.InputStream is) throws java.io.IOException
java.io.IOException
public static java.lang.String copyAndDigest(java.io.InputStream is, java.io.File f, java.lang.String algo) throws java.io.IOException, java.io.FileNotFoundException, java.io.SyncFailedException, java.security.NoSuchAlgorithmException
java.io.IOException
java.io.FileNotFoundException
java.io.SyncFailedException
java.security.NoSuchAlgorithmException
public static java.lang.String copyAndDigest(java.io.InputStream is, java.io.File f, java.lang.String algo, boolean forceFSSync) throws java.io.IOException, java.io.FileNotFoundException, java.io.SyncFailedException, java.security.NoSuchAlgorithmException
java.io.IOException
java.io.FileNotFoundException
java.io.SyncFailedException
java.security.NoSuchAlgorithmException
public static long copy(java.io.InputStream is, java.io.OutputStream os) throws java.io.IOException, java.io.SyncFailedException
java.io.IOException
java.io.SyncFailedException
public static long copy(java.io.InputStream is, java.io.OutputStream os, boolean forceFSSync) throws java.io.IOException, java.io.SyncFailedException
java.io.IOException
java.io.SyncFailedException
public static long copy(java.io.InputStream is, java.io.OutputStream os, boolean forceFSSync, boolean closeOutputStream) throws java.io.IOException, java.io.SyncFailedException
java.io.IOException
java.io.SyncFailedException
public static long copy(java.io.InputStream is, java.io.OutputStream os, boolean forceFSSync, boolean closeOutputStream, long maxlen) throws java.io.IOException, java.io.SyncFailedException
java.io.IOException
java.io.SyncFailedException
public static long copy(java.io.InputStream is, java.io.OutputStream os, long maxlen) throws java.io.IOException
java.io.IOException
public static long copy(java.io.InputStream is, java.io.DataOutput os, long maxlen) throws java.io.IOException
java.io.IOException
public static void copyFile(java.io.File src, java.io.File dst) throws java.io.IOException, java.io.FileNotFoundException, java.io.SyncFailedException
java.io.IOException
java.io.FileNotFoundException
java.io.SyncFailedException
public static void copyFile(java.io.File src, java.io.File dst, boolean forceFSSync) throws java.io.IOException, java.io.FileNotFoundException, java.io.SyncFailedException
java.io.IOException
java.io.FileNotFoundException
java.io.SyncFailedException
public static java.io.File atomicMove(java.io.File src, java.io.File dst) throws java.io.IOException
java.io.IOException
public static boolean isAtomicMoveSupported(java.io.File src, java.io.File dst)
public static java.lang.String getHashForFile(java.lang.String algo, java.io.File f) throws java.security.NoSuchAlgorithmException, java.io.IOException, java.io.FileNotFoundException
java.security.NoSuchAlgorithmException
java.io.IOException
java.io.FileNotFoundException
public static java.lang.String getHashForBytes(java.lang.String algo, byte[] bytes) throws java.security.NoSuchAlgorithmException
java.security.NoSuchAlgorithmException
public static long getLinesCount(java.lang.String filename) throws java.io.FileNotFoundException, java.io.IOException
java.io.FileNotFoundException
java.io.IOException
public static long getLinesCount(java.io.File f) throws java.io.FileNotFoundException, java.io.IOException
java.io.FileNotFoundException
java.io.IOException
public static java.lang.String getFilenameExtension(java.lang.String filename)
filename
- the name of the filepublic static java.lang.String getFilenameNamePart(java.lang.String filename)
public static java.lang.String[] splitFilenameAndExtension(java.lang.String filename)
public static boolean isStandardIgnoreFilename(java.lang.String filename)
filename
- the filename to checktrue
if the given filename matchespublic static boolean isNonIgnoredFilenameWithOneOfSuffixes(java.io.File f, java.util.Collection<java.lang.String> suffixes)
isStandardIgnoreFilename(String)
.f
- the file for which to determine if it is "relevant"suffixes
- a list of suffixes, e.g. ['.nrx', '.java'], may be null or emptyisStandardIgnoreFilename(String)
,
true otherwise if no suffixes were passed or the passed file has a suffix, that is part of the passed list.public static java.lang.String replaceInvalidFilenameChars(java.lang.String filename)
public static boolean containsInvalidFilenameChars(java.lang.String filename)
public static java.lang.String getErrortextIfContainsInvalidFilenameChars(java.lang.String filename, java.lang.String attrName, java.lang.String boDesc)
public static boolean open(java.io.File f)
_file
- The file to open with the default applicationtrue
if the action could successfully be invoked with the given argumentpublic static java.lang.String combineRelativePathsAsNeeded(java.lang.String outerPath, java.lang.String innerPath)
outerPath
- innerPath
- public static java.lang.String getFilenameFromPath(java.lang.String path)
path
- public static java.lang.String packageToFilePath(java.lang.String pack)
pack
- Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.