|
static void | main (String[] args) |
|
Definition at line 3 of file WriteFile.java.
◆ main()
static void WriteFile.main |
( |
String[] | args | ) |
|
|
inlinestatic |
Definition at line 5 of file WriteFile.java.
5 {
6 try {
7 FileWriter writer = new FileWriter("Test.txt");
8 writer.write("This is a plain text file");
9 writer.close();
10 } catch (Exception ex) {
11 ex.printStackTrace();
12 }
13 }
The documentation for this class was generated from the following file: