
FileWriter
Package: java.io
Description: writes characters to a text file
Constructor
FileWriter( String fileName, boolean mode )
constructs a FileWriter object from a String representing the name
of a file;if mode is false,we will write to the file;if it is true,we will
append to the file.Throws an IOException.
FlowLayout
Package: java.awt
Description: layout manager that arranges components left to right, start-
ing a new row when a newly added component does not fit on the current
row
Constructor
FlowLayout( )
creates a flow layout with components centered.
Graphics
Package: java.awt
Description: represents the current graphical context, including the com- ...