|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.runtime.DefaultGroovyMethodsSupport org.codehaus.groovy.runtime.ResourceGroovyMethods
public class ResourceGroovyMethods extends DefaultGroovyMethodsSupport
This class defines new groovy methods for Readers, Writers, InputStreams and
OutputStreams which appear on normal JDK classes inside the Groovy environment.
Static methods are used with the first parameter being the destination class,
i.e. public static T eachLine(InputStream self, Closure c)
provides a eachLine(Closure c)
method for InputStream
.
Method Summary | |
---|---|
static void
|
append(java.io.File file, java.lang.Object text)
Append the text at the end of the File. |
static void
|
append(java.io.File file, byte[] bytes)
Append bytes to the end of a File. |
static void
|
append(java.io.File self, java.io.InputStream stream)
Append binary data to the file. |
static void
|
append(java.io.File file, java.lang.Object text, java.lang.String charset)
Append the text at the end of the File, using a specified encoding. |
static java.lang.Object
|
asType(java.io.File f, java.lang.Class c)
|
static java.io.File
|
asWritable(java.io.File file)
|
static java.io.File
|
asWritable(java.io.File file, java.lang.String encoding)
Allows a file to return a Writable implementation that can output itself to a Writer stream. |
static boolean
|
deleteDir(java.io.File self)
|
static void
|
eachByte(java.io.File self, Closure closure)
|
static void
|
eachByte(java.io.File self, int bufferLen, Closure closure)
|
static void
|
eachByte(java.net.URL url, Closure closure)
|
static void
|
eachByte(java.net.URL url, int bufferLen, Closure closure)
|
static void
|
eachDir(java.io.File self, Closure closure)
Invokes the closure for each subdirectory in this directory, ignoring regular files. |
static void
|
eachDirMatch(java.io.File self, java.lang.Object nameFilter, Closure closure)
Invokes the closure for each subdirectory whose name (dir.name) matches the given nameFilter in the given directory - calling the DefaultGroovyMethods.isCase method to determine if a match occurs. |
static void
|
eachDirRecurse(java.io.File self, Closure closure)
Invokes the closure for each descendant directory of this directory. |
static void
|
eachFile(java.io.File self, FileType fileType, Closure closure)
Invokes the closure for each 'child' file in this 'parent' folder/directory. |
static void
|
eachFile(java.io.File self, Closure closure)
Invokes the closure for each 'child' file in this 'parent' folder/directory. |
static void
|
eachFileMatch(java.io.File self, FileType fileType, java.lang.Object nameFilter, Closure closure)
Invokes the closure for each file whose name (file.name) matches the given nameFilter in the given directory - calling the DefaultGroovyMethods.isCase method to determine if a match occurs. |
static void
|
eachFileMatch(java.io.File self, java.lang.Object nameFilter, Closure closure)
Invokes the closure for each file whose name (file.name) matches the given nameFilter in the given directory - calling the DefaultGroovyMethods.isCase method to determine if a match occurs. |
static void
|
eachFileRecurse(java.io.File self, FileType fileType, Closure closure)
Invokes the closure for each descendant file in this directory. |
static void
|
eachFileRecurse(java.io.File self, Closure closure)
Invokes the closure for each descendant file in this directory. |
static java.lang.Object
|
eachLine(java.io.File self, Closure closure)
Iterates through this file line by line. |
static java.lang.Object
|
eachLine(java.io.File self, java.lang.String charset, Closure closure)
Iterates through this file line by line. |
static java.lang.Object
|
eachLine(java.io.File self, int firstLine, Closure closure)
Iterates through this file line by line. |
static java.lang.Object
|
eachLine(java.io.File self, java.lang.String charset, int firstLine, Closure closure)
Iterates through this file line by line. |
static java.lang.Object
|
eachLine(java.net.URL url, Closure closure)
Iterates through the lines read from the URL's associated input stream passing each line to the given 1 or 2 arg closure. |
static java.lang.Object
|
eachLine(java.net.URL url, int firstLine, Closure closure)
Iterates through the lines read from the URL's associated input stream passing each line to the given 1 or 2 arg closure. |
static java.lang.Object
|
eachLine(java.net.URL url, java.lang.String charset, Closure closure)
Iterates through the lines read from the URL's associated input stream passing each line to the given 1 or 2 arg closure. |
static java.lang.Object
|
eachLine(java.net.URL url, java.lang.String charset, int firstLine, Closure closure)
Iterates through the lines read from the URL's associated input stream passing each line to the given 1 or 2 arg closure. |
static void
|
eachObject(java.io.File self, Closure closure)
Iterates through the given file object by object. |
static Writable
|
filterLine(java.io.File self, Closure closure)
|
static Writable
|
filterLine(java.io.File self, java.lang.String charset, Closure closure)
|
static void
|
filterLine(java.io.File self, java.io.Writer writer, Closure closure)
|
static void
|
filterLine(java.io.File self, java.io.Writer writer, java.lang.String charset, Closure closure)
|
static Writable
|
filterLine(java.net.URL self, Closure predicate)
|
static Writable
|
filterLine(java.net.URL self, java.lang.String charset, Closure predicate)
|
static void
|
filterLine(java.net.URL self, java.io.Writer writer, Closure predicate)
|
static void
|
filterLine(java.net.URL self, java.io.Writer writer, java.lang.String charset, Closure predicate)
|
static byte[]
|
getBytes(java.io.File file)
Read the content of the File and returns it as a byte[]. |
static byte[]
|
getBytes(java.net.URL url)
Read the content of this URL and returns it as a byte[]. |
static java.lang.String
|
getText(java.io.File file, java.lang.String charset)
Read the content of the File using the specified encoding and return it as a String. |
static java.lang.String
|
getText(java.io.File file)
Read the content of the File and returns it as a String. |
static java.lang.String
|
getText(java.net.URL url)
Read the content of this URL and returns it as a String. |
static java.lang.String
|
getText(java.net.URL url, java.util.Map parameters)
Read the content of this URL and returns it as a String. |
static java.lang.String
|
getText(java.net.URL url, java.lang.String charset)
Read the data from this URL and return it as a String. |
static java.lang.String
|
getText(java.net.URL url, java.util.Map parameters, java.lang.String charset)
Read the data from this URL and return it as a String. |
static java.io.File
|
leftShift(java.io.File file, java.lang.Object text)
Write the text to the File. |
static java.io.File
|
leftShift(java.io.File file, byte[] bytes)
Write bytes to a File. |
static java.io.File
|
leftShift(java.io.File file, java.io.InputStream data)
Append binary data to the file. |
static java.io.DataInputStream
|
newDataInputStream(java.io.File file)
|
static java.io.DataOutputStream
|
newDataOutputStream(java.io.File file)
|
static java.io.BufferedInputStream
|
newInputStream(java.io.File file)
|
static java.io.BufferedInputStream
|
newInputStream(java.net.URL url)
Creates a buffered input stream for this URL. |
static java.io.BufferedInputStream
|
newInputStream(java.net.URL url, java.util.Map parameters)
|
static java.io.ObjectInputStream
|
newObjectInputStream(java.io.File file)
Create an object input stream for this file. |
static java.io.ObjectInputStream
|
newObjectInputStream(java.io.File file, java.lang.ClassLoader classLoader)
Create an object input stream for this file using the given class loader. |
static java.io.ObjectOutputStream
|
newObjectOutputStream(java.io.File file)
Create an object output stream for this file. |
static java.io.BufferedOutputStream
|
newOutputStream(java.io.File file)
|
static java.io.PrintWriter
|
newPrintWriter(java.io.File file)
|
static java.io.PrintWriter
|
newPrintWriter(java.io.File file, java.lang.String charset)
|
static java.io.BufferedReader
|
newReader(java.io.File file)
|
static java.io.BufferedReader
|
newReader(java.io.File file, java.lang.String charset)
|
static java.io.BufferedReader
|
newReader(java.net.URL url)
|
static java.io.BufferedReader
|
newReader(java.net.URL url, java.util.Map parameters)
|
static java.io.BufferedReader
|
newReader(java.net.URL url, java.lang.String charset)
|
static java.io.BufferedReader
|
newReader(java.net.URL url, java.util.Map parameters, java.lang.String charset)
|
static java.io.BufferedWriter
|
newWriter(java.io.File file)
|
static java.io.BufferedWriter
|
newWriter(java.io.File file, boolean append)
|
static java.io.BufferedWriter
|
newWriter(java.io.File file, java.lang.String charset, boolean append)
|
static java.io.BufferedWriter
|
newWriter(java.io.File file, java.lang.String charset)
Creates a buffered writer for this file, writing data using the given encoding. |
static byte[]
|
readBytes(java.io.File file)
|
static java.util.List
|
readLines(java.io.File file)
Reads the file into a list of Strings, with one item for each line. |
static java.util.List
|
readLines(java.io.File file, java.lang.String charset)
Reads the file into a list of Strings, with one item for each line. |
static java.util.List
|
readLines(java.net.URL self)
Reads the URL contents into a list, with one element for each line. |
static java.util.List
|
readLines(java.net.URL self, java.lang.String charset)
Reads the URL contents into a list, with one element for each line. |
static boolean
|
renameTo(java.io.File self, java.lang.String newPathName)
Renames the file. |
static void
|
setBytes(java.io.File file, byte[] bytes)
Write the bytes from the byte array to the File. |
static void
|
setText(java.io.File file, java.lang.String text)
Synonym for write(text) allowing file.text = 'foo'. |
static void
|
setText(java.io.File file, java.lang.String text, java.lang.String charset)
Synonym for write(text, charset) allowing: myFile.setText('some text', charset)or with some help from ExpandoMetaClass , you could do something like:
myFile.metaClass.setText = { String s -> delegate.setText(s, 'UTF-8') } myfile.text = 'some text' |
static long
|
size(java.io.File self)
Provide the standard Groovy |
static java.lang.Object
|
splitEachLine(java.io.File self, java.lang.String regex, Closure closure)
Iterates through this file line by line, splitting each line using the given regex separator. |
static java.lang.Object
|
splitEachLine(java.io.File self, java.util.regex.Pattern pattern, Closure closure)
Iterates through this file line by line, splitting each line using the given separator Pattern. |
static java.lang.Object
|
splitEachLine(java.io.File self, java.lang.String regex, java.lang.String charset, Closure closure)
Iterates through this file line by line, splitting each line using the given regex separator. |
static java.lang.Object
|
splitEachLine(java.io.File self, java.util.regex.Pattern pattern, java.lang.String charset, Closure closure)
Iterates through this file line by line, splitting each line using the given regex separator Pattern. |
static java.lang.Object
|
splitEachLine(java.net.URL self, java.lang.String regex, Closure closure)
Iterates through the input stream associated with this URL line by line, splitting each line using the given regex separator. |
static java.lang.Object
|
splitEachLine(java.net.URL self, java.util.regex.Pattern pattern, Closure closure)
Iterates through the input stream associated with this URL line by line, splitting each line using the given regex separator Pattern. |
static java.lang.Object
|
splitEachLine(java.net.URL self, java.lang.String regex, java.lang.String charset, Closure closure)
Iterates through the input stream associated with this URL line by line, splitting each line using the given regex separator. |
static java.lang.Object
|
splitEachLine(java.net.URL self, java.util.regex.Pattern pattern, java.lang.String charset, Closure closure)
Iterates through the input stream associated with this URL line by line, splitting each line using the given regex separator Pattern. |
static java.net.URI
|
toURI(java.lang.CharSequence self)
Transforms a CharSequence representing a URI into a URI object. |
static java.net.URI
|
toURI(java.lang.String self)
|
static java.net.URL
|
toURL(java.lang.CharSequence self)
|
static java.net.URL
|
toURL(java.lang.String self)
|
static void
|
traverse(java.io.File self, java.util.Map options, Closure closure)
Invokes |
static void
|
traverse(java.io.File self, Closure closure)
Invokes the closure for each descendant file in this directory tree. |
static void
|
traverse(java.io.File self, java.util.Map options)
Invokes the closure specified with key 'visit' in the options Map for each descendant file in this directory tree. |
static java.lang.Object
|
withDataInputStream(java.io.File file, Closure closure)
|
static java.lang.Object
|
withDataOutputStream(java.io.File file, Closure closure)
|
static java.lang.Object
|
withInputStream(java.io.File file, Closure closure)
|
static java.lang.Object
|
withInputStream(java.net.URL url, Closure closure)
|
static java.lang.Object
|
withObjectInputStream(java.io.File file, Closure closure)
Create a new ObjectInputStream for this file and pass it to the closure. |
static java.lang.Object
|
withObjectInputStream(java.io.File file, java.lang.ClassLoader classLoader, Closure closure)
Create a new ObjectInputStream for this file associated with the given class loader and pass it to the closure. |
static java.lang.Object
|
withObjectOutputStream(java.io.File file, Closure closure)
Create a new ObjectOutputStream for this file and then pass it to the closure. |
static java.lang.Object
|
withOutputStream(java.io.File file, Closure closure)
|
static java.lang.Object
|
withPrintWriter(java.io.File file, Closure closure)
|
static java.lang.Object
|
withPrintWriter(java.io.File file, java.lang.String charset, Closure closure)
|
static java.lang.Object
|
withReader(java.io.File file, Closure closure)
|
static java.lang.Object
|
withReader(java.io.File file, java.lang.String charset, Closure closure)
|
static java.lang.Object
|
withReader(java.net.URL url, Closure closure)
|
static java.lang.Object
|
withReader(java.net.URL url, java.lang.String charset, Closure closure)
|
static java.lang.Object
|
withWriter(java.io.File file, Closure closure)
Creates a new BufferedWriter for this file, passes it to the closure, and ensures the stream is flushed and closed after the closure returns. |
static java.lang.Object
|
withWriter(java.io.File file, java.lang.String charset, Closure closure)
|
static java.lang.Object
|
withWriterAppend(java.io.File file, java.lang.String charset, Closure closure)
|
static java.lang.Object
|
withWriterAppend(java.io.File file, Closure closure)
|
static void
|
write(java.io.File file, java.lang.String text)
Write the text to the File. |
static void
|
write(java.io.File file, java.lang.String text, java.lang.String charset)
Write the text to the File, using the specified encoding. |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Method Detail |
---|
public static void append(java.io.File file, java.lang.Object text)
file
- a Filetext
- the text to append at the end of the File
public static void append(java.io.File file, byte[] bytes)
file
- a Filebytes
- the byte array to append to the end of the File
public static void append(java.io.File self, java.io.InputStream stream)
self
- a Filestream
- stream to read data from.
public static void append(java.io.File file, java.lang.Object text, java.lang.String charset)
file
- a Filetext
- the text to append at the end of the Filecharset
- the charset used
/** public static java.lang.Object asType(java.io.File f, java.lang.Class c)
public static java.io.File asWritable(java.io.File file)
public static java.io.File asWritable(java.io.File file, java.lang.String encoding)
file
- a Fileencoding
- the encoding to be used when reading the file's contents
public static boolean deleteDir(java.io.File self)
public static void eachByte(java.io.File self, Closure closure)
public static void eachByte(java.io.File self, int bufferLen, Closure closure)
public static void eachByte(java.net.URL url, Closure closure)
public static void eachByte(java.net.URL url, int bufferLen, Closure closure)
public static void eachDir(java.io.File self, Closure closure)
self
- a File (that happens to be a folder/directory)closure
- a closure (first parameter is the subdirectory file)
public static void eachDirMatch(java.io.File self, java.lang.Object nameFilter, Closure closure)
self
- a filenameFilter
- the nameFilter to perform on the name of the directory (using the DefaultGroovyMethods.isCase method)closure
- the closure to invoke
public static void eachDirRecurse(java.io.File self, Closure closure)
self
- a directoryclosure
- a closure
public static void eachFile(java.io.File self, FileType fileType, Closure closure)
self
- a file objectfileType
- if normal files or directories or both should be processedclosure
- the closure to invoke
public static void eachFile(java.io.File self, Closure closure)
self
- a File (that happens to be a folder/directory)closure
- a closure (first parameter is the 'child' file)
public static void eachFileMatch(java.io.File self, FileType fileType, java.lang.Object nameFilter, Closure closure)
// collect names of files in baseDir matching supplied regex pattern import static groovy.io.FileType.* def names = [] baseDir.eachFileMatch FILES, ~/foo\d\.txt/, { names << it.name } assert names == ['foo1.txt', 'foo2.txt'] // remove all *.bak files in baseDir baseDir.eachFileMatch FILES, ~/.*\.bak/, { File bak -> bak.delete() } // print out files > 4K in size from baseDir baseDir.eachFileMatch FILES, { new File(baseDir, it).size() > 4096 }, { println "$it.name ${it.size()}" }
self
- a filefileType
- whether normal files or directories or both should be processednameFilter
- the filter to perform on the name of the file/directory (using the DefaultGroovyMethods.isCase method)closure
- the closure to invoke
public static void eachFileMatch(java.io.File self, java.lang.Object nameFilter, Closure closure)
self
- a filenameFilter
- the nameFilter to perform on the name of the file (using the DefaultGroovyMethods.isCase method)closure
- the closure to invoke
public static void eachFileRecurse(java.io.File self, FileType fileType, Closure closure)
self
- a file objectfileType
- if normal files or directories or both should be processedclosure
- the closure to invoke on each file
public static void eachFileRecurse(java.io.File self, Closure closure)
self
- a Fileclosure
- a closure
public static java.lang.Object eachLine(java.io.File self, Closure closure)
self
- a Fileclosure
- a closure (arg 1 is line, optional arg 2 is line number starting at line 1)
public static java.lang.Object eachLine(java.io.File self, java.lang.String charset, Closure closure)
self
- a Filecharset
- opens the file with a specified charsetclosure
- a closure (arg 1 is line, optional arg 2 is line number starting at line 1)
public static java.lang.Object eachLine(java.io.File self, int firstLine, Closure closure)
self
- a FilefirstLine
- the line number value used for the first line (default is 1, set to 0 to start counting from 0)closure
- a closure (arg 1 is line, optional arg 2 is line number)
public static java.lang.Object eachLine(java.io.File self, java.lang.String charset, int firstLine, Closure closure)
self
- a Filecharset
- opens the file with a specified charsetfirstLine
- the line number value used for the first line (default is 1, set to 0 to start counting from 0)closure
- a closure (arg 1 is line, optional arg 2 is line number)
public static java.lang.Object eachLine(java.net.URL url, Closure closure)
url
- a URL to open and readclosure
- a closure to apply on each line (arg 1 is line, optional arg 2 is line number starting at line 1)
public static java.lang.Object eachLine(java.net.URL url, int firstLine, Closure closure)
url
- a URL to open and readfirstLine
- the line number value used for the first line (default is 1, set to 0 to start counting from 0)closure
- a closure to apply on each line (arg 1 is line, optional arg 2 is line number)
public static java.lang.Object eachLine(java.net.URL url, java.lang.String charset, Closure closure)
url
- a URL to open and readcharset
- opens the stream with a specified charsetclosure
- a closure to apply on each line (arg 1 is line, optional arg 2 is line number starting at line 1)
public static java.lang.Object eachLine(java.net.URL url, java.lang.String charset, int firstLine, Closure closure)
url
- a URL to open and readcharset
- opens the stream with a specified charsetfirstLine
- the line number value used for the first line (default is 1, set to 0 to start counting from 0)closure
- a closure to apply on each line (arg 1 is line, optional arg 2 is line number)
public static void eachObject(java.io.File self, Closure closure)
self
- a Fileclosure
- a closure
public static Writable filterLine(java.io.File self, Closure closure)
public static Writable filterLine(java.io.File self, java.lang.String charset, Closure closure)
public static void filterLine(java.io.File self, java.io.Writer writer, Closure closure)
public static void filterLine(java.io.File self, java.io.Writer writer, java.lang.String charset, Closure closure)
public static Writable filterLine(java.net.URL self, Closure predicate)
public static Writable filterLine(java.net.URL self, java.lang.String charset, Closure predicate)
public static void filterLine(java.net.URL self, java.io.Writer writer, Closure predicate)
public static void filterLine(java.net.URL self, java.io.Writer writer, java.lang.String charset, Closure predicate)
public static byte[] getBytes(java.io.File file)
file
- the file whose content we want to read
public static byte[] getBytes(java.net.URL url)
url
- URL to read content from
public static java.lang.String getText(java.io.File file, java.lang.String charset)
file
- the file whose content we want to readcharset
- the charset used to read the content of the file
public static java.lang.String getText(java.io.File file)
file
- the file whose content we want to read
public static java.lang.String getText(java.net.URL url)
url
- URL to read content from
public static java.lang.String getText(java.net.URL url, java.util.Map parameters)
url
- URL to read content fromparameters
- connection parameters
public static java.lang.String getText(java.net.URL url, java.lang.String charset)
url
- URL to read content fromcharset
- opens the stream with a specified charset
public static java.lang.String getText(java.net.URL url, java.util.Map parameters, java.lang.String charset)
url
- URL to read content fromparameters
- connection parameterscharset
- opens the stream with a specified charset
public static java.io.File leftShift(java.io.File file, java.lang.Object text)
file
- a Filetext
- the text to write to the File
public static java.io.File leftShift(java.io.File file, byte[] bytes)
file
- a Filebytes
- the byte array to append to the end of the File
public static java.io.File leftShift(java.io.File file, java.io.InputStream data)
file
- a Filedata
- an InputStream of data to write to the file
public static java.io.DataInputStream newDataInputStream(java.io.File file)
public static java.io.DataOutputStream newDataOutputStream(java.io.File file)
public static java.io.BufferedInputStream newInputStream(java.io.File file)
public static java.io.BufferedInputStream newInputStream(java.net.URL url)
url
- a URL
public static java.io.BufferedInputStream newInputStream(java.net.URL url, java.util.Map parameters)
public static java.io.ObjectInputStream newObjectInputStream(java.io.File file)
file
- a file
public static java.io.ObjectInputStream newObjectInputStream(java.io.File file, java.lang.ClassLoader classLoader)
file
- a fileclassLoader
- the class loader to use when loading the class
public static java.io.ObjectOutputStream newObjectOutputStream(java.io.File file)
file
- a file
public static java.io.BufferedOutputStream newOutputStream(java.io.File file)
public static java.io.PrintWriter newPrintWriter(java.io.File file)
public static java.io.PrintWriter newPrintWriter(java.io.File file, java.lang.String charset)
public static java.io.BufferedReader newReader(java.io.File file)
public static java.io.BufferedReader newReader(java.io.File file, java.lang.String charset)
public static java.io.BufferedReader newReader(java.net.URL url)
public static java.io.BufferedReader newReader(java.net.URL url, java.util.Map parameters)
public static java.io.BufferedReader newReader(java.net.URL url, java.lang.String charset)
public static java.io.BufferedReader newReader(java.net.URL url, java.util.Map parameters, java.lang.String charset)
public static java.io.BufferedWriter newWriter(java.io.File file)
public static java.io.BufferedWriter newWriter(java.io.File file, boolean append)
public static java.io.BufferedWriter newWriter(java.io.File file, java.lang.String charset, boolean append)
public static java.io.BufferedWriter newWriter(java.io.File file, java.lang.String charset)
file
- a Filecharset
- the name of the encoding used to write in this file
public static byte[] readBytes(java.io.File file)
public static java.util.List readLines(java.io.File file)
file
- a File
public static java.util.List readLines(java.io.File file, java.lang.String charset)
file
- a Filecharset
- opens the file with a specified charset
public static java.util.List readLines(java.net.URL self)
self
- a URL
public static java.util.List readLines(java.net.URL self, java.lang.String charset)
self
- a URLcharset
- opens the URL with a specified charset
public static boolean renameTo(java.io.File self, java.lang.String newPathName)
self
- a FilenewPathName
- The new pathname for the named filetrue
if and only if the renaming succeeded;
false
otherwise
public static void setBytes(java.io.File file, byte[] bytes)
file
- the file to write tobytes
- the byte[] to write to the file
public static void setText(java.io.File file, java.lang.String text)
file
- a Filetext
- the text to write to the File
public static void setText(java.io.File file, java.lang.String text, java.lang.String charset)
myFile.setText('some text', charset)or with some help from
ExpandoMetaClass
, you could do something like:
myFile.metaClass.setText = { String s -> delegate.setText(s, 'UTF-8') } myfile.text = 'some text'
file
- A Filecharset
- The charset used when writing to the filetext
- The text to write to the File
public static long size(java.io.File self)
size()
method for File
.
self
- a file object
public static java.lang.Object splitEachLine(java.io.File self, java.lang.String regex, Closure closure)
self
- a Fileregex
- the delimiting regular expressionclosure
- a closure
public static java.lang.Object splitEachLine(java.io.File self, java.util.regex.Pattern pattern, Closure closure)
self
- a Filepattern
- the regular expression Pattern for the delimiterclosure
- a closure
public static java.lang.Object splitEachLine(java.io.File self, java.lang.String regex, java.lang.String charset, Closure closure)
self
- a Fileregex
- the delimiting regular expressioncharset
- opens the file with a specified charsetclosure
- a closure
public static java.lang.Object splitEachLine(java.io.File self, java.util.regex.Pattern pattern, java.lang.String charset, Closure closure)
self
- a Filepattern
- the regular expression Pattern for the delimitercharset
- opens the file with a specified charsetclosure
- a closure
public static java.lang.Object splitEachLine(java.net.URL self, java.lang.String regex, Closure closure)
self
- a URL to open and readregex
- the delimiting regular expressionclosure
- a closure
public static java.lang.Object splitEachLine(java.net.URL self, java.util.regex.Pattern pattern, Closure closure)
self
- a URL to open and readpattern
- the regular expression Pattern for the delimiterclosure
- a closure
public static java.lang.Object splitEachLine(java.net.URL self, java.lang.String regex, java.lang.String charset, Closure closure)
self
- a URL to open and readregex
- the delimiting regular expressioncharset
- opens the file with a specified charsetclosure
- a closure
public static java.lang.Object splitEachLine(java.net.URL self, java.util.regex.Pattern pattern, java.lang.String charset, Closure closure)
self
- a URL to open and readpattern
- the regular expression Pattern for the delimitercharset
- opens the file with a specified charsetclosure
- a closure
public static java.net.URI toURI(java.lang.CharSequence self)
self
- the CharSequence representing a URI
public static java.net.URI toURI(java.lang.String self)
public static java.net.URL toURL(java.lang.CharSequence self)
public static java.net.URL toURL(java.lang.String self)
public static void traverse(java.io.File self, java.util.Map options, Closure closure)
closure
for each descendant file in this directory tree.
Sub-directories are recursively traversed as found.
The traversal can be adapted by providing various options in the options
Map according
to the following keys:def totalSize = 0 def count = 0 def sortByTypeThenName = { a, b -> a.isFile() != b.isFile() ? a.isFile() <=> b.isFile() : a.name <=> b.name } rootDir.traverse( type : FILES, nameFilter : ~/.*\.groovy/, preDir : { if (it.name == '.svn') return SKIP_SUBTREE }, postDir : { println "Found $count files in $it.name totalling $totalSize bytes" totalSize = 0; count = 0 }, postRoot : true sort : sortByTypeThenName ) {it -> totalSize += it.size(); count++ }
self
- a Fileoptions
- a Map of options to alter the traversal behaviorclosure
- the Closure to invoke on each file/directory and optionally returning a FileVisitResult value
which can be used to control subsequent processing
public static void traverse(java.io.File self, Closure closure)
self
- a Fileclosure
- the Closure to invoke on each file/directory and optionally returning a FileVisitResult value
which can be used to control subsequent processing
public static void traverse(java.io.File self, java.util.Map options)
self
- a Fileoptions
- a Map of options to alter the traversal behavior
public static java.lang.Object withDataInputStream(java.io.File file, Closure closure)
public static java.lang.Object withDataOutputStream(java.io.File file, Closure closure)
public static java.lang.Object withInputStream(java.io.File file, Closure closure)
public static java.lang.Object withInputStream(java.net.URL url, Closure closure)
public static java.lang.Object withObjectInputStream(java.io.File file, Closure closure)
file
- a Fileclosure
- a closure
public static java.lang.Object withObjectInputStream(java.io.File file, java.lang.ClassLoader classLoader, Closure closure)
file
- a FileclassLoader
- the class loader to use when loading the classclosure
- a closure
public static java.lang.Object withObjectOutputStream(java.io.File file, Closure closure)
file
- a Fileclosure
- a closure
public static java.lang.Object withOutputStream(java.io.File file, Closure closure)
public static java.lang.Object withPrintWriter(java.io.File file, Closure closure)
public static java.lang.Object withPrintWriter(java.io.File file, java.lang.String charset, Closure closure)
public static java.lang.Object withReader(java.io.File file, Closure closure)
public static java.lang.Object withReader(java.io.File file, java.lang.String charset, Closure closure)
public static java.lang.Object withReader(java.net.URL url, Closure closure)
public static java.lang.Object withReader(java.net.URL url, java.lang.String charset, Closure closure)
public static java.lang.Object withWriter(java.io.File file, Closure closure)
file
- a Fileclosure
- a closure
public static java.lang.Object withWriter(java.io.File file, java.lang.String charset, Closure closure)
public static java.lang.Object withWriterAppend(java.io.File file, java.lang.String charset, Closure closure)
public static java.lang.Object withWriterAppend(java.io.File file, Closure closure)
public static void write(java.io.File file, java.lang.String text)
file
- a Filetext
- the text to write to the File
public static void write(java.io.File file, java.lang.String text, java.lang.String charset)
file
- a Filetext
- the text to write to the Filecharset
- the charset used
Groovy Documentation