I just simply would like to add a string to a notepad file. Let's call the notepad file "Values.txt" Say I have;
public static void main(String[] args) {
String myText = "Let's add this string to a notepad file";
// Code to add string to a notepad file
}
What would that code be?