This photo was taken around 10 years ago during a four wheel drive trip. It is the view from a causeway on Tiri Road, Knorrit Flat NSW.
Holiday 100: The gifts everyone’s searching for
2 hours ago
A place for everything...
This photo was taken around 10 years ago during a four wheel drive trip. It is the view from a causeway on Tiri Road, Knorrit Flat NSW.StringBuffer output = new StringBuffer();
// Get the correct Line Separator for the OS (CRLF or LF)
String nl = System.getProperty("line.separator");
String filename = "output.txt";
output.append("Write First Line to StringBuffer");
output.append(nl);
output.append("Write Second Line to StringBuffer");
try {
BufferedWriter out = new BufferedWriter(
new FileWriter(filename));
String outText = output.toString();
out.write(outText);
out.close();
}
catch (IOException e)
{
e.printStackTrace();
}