public class LockableFileWriter extends Writer
This class provides a simple alternative to FileWriter
that will use a lock file to prevent duplicate writes.
N.B. the lock file is deleted when close()
is called
- or if the main file cannot be opened initially.
In the (unlikely) event that the lockfile cannot be deleted,
this is not reported, and subsequent requests using
the same lockfile will fail.
By default, the file will be overwritten, but this may be changed to append.
The lock directory may be specified, but defaults to the system property
java.io.tmpdir
.
The encoding may also be specified, and defaults to the platform default.
Constructor and Description |
---|
LockableFileWriter(File file)
Constructs a LockableFileWriter.
|
LockableFileWriter(File file,
boolean append)
Constructs a LockableFileWriter.
|
LockableFileWriter(File file,
boolean append,
String lockDir)
Deprecated.
2.5 use
LockableFileWriter(File, Charset, boolean, String) instead |
LockableFileWriter(File file,
Charset charset)
Constructs a LockableFileWriter with a file encoding.
|
LockableFileWriter(File file,
Charset charset,
boolean append,
String lockDir)
Constructs a LockableFileWriter with a file encoding.
|
LockableFileWriter(File file,
String charsetName)
Constructs a LockableFileWriter with a file encoding.
|
LockableFileWriter(File file,
String charsetName,
boolean append,
String lockDir)
Constructs a LockableFileWriter with a file encoding.
|
LockableFileWriter(String fileName)
Constructs a LockableFileWriter.
|
LockableFileWriter(String fileName,
boolean append)
Constructs a LockableFileWriter.
|
LockableFileWriter(String fileName,
boolean append,
String lockDir)
Constructs a LockableFileWriter.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the file writer and deletes the lockfile (if possible).
|
void |
flush()
Flush the stream.
|
void |
write(char[] chr)
Write the characters from an array.
|
void |
write(char[] chr,
int st,
int end)
Write the specified characters from an array.
|
void |
write(int idx)
Write a character.
|
void |
write(String str)
Write the characters from a string.
|
void |
write(String str,
int st,
int end)
Write the specified characters from a string.
|
public LockableFileWriter(String fileName) throws IOException
fileName
- the file to write to, not nullNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(String fileName, boolean append) throws IOException
fileName
- file to write to, not nullappend
- true if content should be appended, false to overwriteNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(String fileName, boolean append, String lockDir) throws IOException
fileName
- the file to write to, not nullappend
- true if content should be appended, false to overwritelockDir
- the directory in which the lock file should be heldNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(File file) throws IOException
file
- the file to write to, not nullNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(File file, boolean append) throws IOException
file
- the file to write to, not nullappend
- true if content should be appended, false to overwriteNullPointerException
- if the file is nullIOException
- in case of an I/O error@Deprecated public LockableFileWriter(File file, boolean append, String lockDir) throws IOException
LockableFileWriter(File, Charset, boolean, String)
insteadfile
- the file to write to, not nullappend
- true if content should be appended, false to overwritelockDir
- the directory in which the lock file should be heldNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(File file, Charset charset) throws IOException
file
- the file to write to, not nullcharset
- the charset to use, null means platform defaultNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(File file, String charsetName) throws IOException
file
- the file to write to, not nullcharsetName
- the name of the requested charset, null means platform defaultNullPointerException
- if the file is nullIOException
- in case of an I/O errorUnsupportedCharsetException
- thrown instead of UnsupportedEncodingException
in version 2.2 if the encoding is not
supported.public LockableFileWriter(File file, Charset charset, boolean append, String lockDir) throws IOException
file
- the file to write to, not nullcharset
- the name of the requested charset, null means platform defaultappend
- true if content should be appended, false to overwritelockDir
- the directory in which the lock file should be heldNullPointerException
- if the file is nullIOException
- in case of an I/O errorpublic LockableFileWriter(File file, String charsetName, boolean append, String lockDir) throws IOException
file
- the file to write to, not nullcharsetName
- the encoding to use, null means platform defaultappend
- true if content should be appended, false to overwritelockDir
- the directory in which the lock file should be heldNullPointerException
- if the file is nullIOException
- in case of an I/O errorUnsupportedCharsetException
- thrown instead of UnsupportedEncodingException
in version 2.2 if the encoding is not
supported.public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Writer
IOException
- if an I/O error occurspublic void write(int idx) throws IOException
write
in class Writer
idx
- the character to writeIOException
- if an I/O error occurspublic void write(char[] chr) throws IOException
write
in class Writer
chr
- the characters to writeIOException
- if an I/O error occurspublic void write(char[] chr, int st, int end) throws IOException
write
in class Writer
chr
- the characters to writest
- The start offsetend
- The number of characters to writeIOException
- if an I/O error occurspublic void write(String str) throws IOException
write
in class Writer
str
- the string to writeIOException
- if an I/O error occurspublic void write(String str, int st, int end) throws IOException
write
in class Writer
str
- the string to writest
- The start offsetend
- The number of characters to writeIOException
- if an I/O error occurspublic void flush() throws IOException
flush
in interface Flushable
flush
in class Writer
IOException
- if an I/O error occursJas4pp 1.5 © Java Analysis Studio for Particle Physics