Write Java code to append the name “Jason” to an existing fi…
Write Java code to append the name “Jason” to an existing file named names.txt instead of erasing it. import java.io.*; public class AppendName { public static void main(String[] args) throws IOException { //Your code here }}