Package groovy.io
Class GroovyPrintWriter
java.lang.Object
java.io.Writer
java.io.PrintWriter
groovy.io.GroovyPrintWriter
- All Implemented Interfaces:
- Closeable,- Flushable,- Appendable,- AutoCloseable
A PrintWriter that outputs objects in Groovy style.
 That means print(Object) uses InvokerHelper.toString(Object)
 to produce the same results as Writer.print(Object).
- Since:
- 1.6
- 
Field SummaryFields inherited from class java.io.PrintWriterout
- 
Constructor SummaryConstructorsConstructorDescriptionGroovyPrintWriter(File file) GroovyPrintWriter(File file, String csn) GroovyPrintWriter(OutputStream out, boolean autoflush) GroovyPrintWriter(Writer out) GroovyPrintWriter(Writer out, boolean autoflush) GroovyPrintWriter(String filename) GroovyPrintWriter(String filename, String csn) 
- 
Method SummaryMethods inherited from class java.io.PrintWriterappend, append, append, checkError, clearError, close, flush, format, format, print, print, print, print, print, print, print, print, printf, printf, println, println, println, println, println, println, println, println, println, setError, write, write, write, write, writeMethods inherited from class java.io.WriternullWriter
- 
Constructor Details- 
GroovyPrintWriter- Throws:
- FileNotFoundException
 
- 
GroovyPrintWriterpublic GroovyPrintWriter(File file, String csn) throws FileNotFoundException, UnsupportedEncodingException 
- 
GroovyPrintWriter
- 
GroovyPrintWriter
- 
GroovyPrintWriter
- 
GroovyPrintWriter
- 
GroovyPrintWriter- Throws:
- FileNotFoundException
 
- 
GroovyPrintWriterpublic GroovyPrintWriter(String filename, String csn) throws FileNotFoundException, UnsupportedEncodingException 
 
- 
- 
Method Details- 
print- Overrides:
- printin class- PrintWriter
 
- 
println- Overrides:
- printlnin class- PrintWriter
 
 
-