Package robocode
Class RobocodeFileWriter
- java.lang.Object
-
- java.io.Writer
-
- java.io.OutputStreamWriter
-
- robocode.RobocodeFileWriter
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.Appendable
,java.lang.AutoCloseable
public class RobocodeFileWriter extends java.io.OutputStreamWriter
RobocodeFileWriter is similar to aFileWriter
and is used for writing data out to a file, which you got by callinggetDataFile()
.You should read
FileWriter
for documentation of this class.Please notice that the max. size of your data file is set to 200000 (~195 KB).
- Author:
- Mathew A. Nelson (original), Flemming N. Larsen (contributor)
- See Also:
AdvancedRobot.getDataFile(String)
,FileWriter
-
-
Constructor Summary
Constructors Constructor Description RobocodeFileWriter(java.io.File file)
Constructs a new RobocodeFileWriter.RobocodeFileWriter(java.io.FileDescriptor fd)
Constructs a new RobocodeFileWriter.RobocodeFileWriter(java.lang.String fileName)
Constructs a new RobocodeFileWriter.RobocodeFileWriter(java.lang.String fileName, boolean append)
Constructs a new RobocodeFileWriter.
-
-
-
Constructor Detail
-
RobocodeFileWriter
public RobocodeFileWriter(java.io.File file) throws java.io.IOException
Constructs a new RobocodeFileWriter. SeeFileWriter(File)
for documentation about this constructor.- Parameters:
file
- the file to write to.- Throws:
java.io.IOException
- if an I/O exception occurs.- See Also:
FileWriter(File)
-
RobocodeFileWriter
public RobocodeFileWriter(java.io.FileDescriptor fd)
Constructs a new RobocodeFileWriter. SeeFileWriter(FileDescriptor)
for documentation about this constructor.- Parameters:
fd
- the file descriptor of the file to write to.- See Also:
FileWriter(FileDescriptor)
-
RobocodeFileWriter
public RobocodeFileWriter(java.lang.String fileName) throws java.io.IOException
Constructs a new RobocodeFileWriter. SeeFileWriter(String)
for documentation about this constructor.- Parameters:
fileName
- the filename of the file to write to.- Throws:
java.io.IOException
- if an I/O exception occurs.- See Also:
FileWriter(String)
-
RobocodeFileWriter
public RobocodeFileWriter(java.lang.String fileName, boolean append) throws java.io.IOException
Constructs a new RobocodeFileWriter. SeeFileWriter(String, boolean)
for documentation about this constructor.- Parameters:
fileName
- the filename of the file to write to.append
- set this to true if the output must be appended to the file.- Throws:
java.io.IOException
- if an I/O exception occurs.- See Also:
FileWriter(String, boolean)
-
-