So I want to write ten digits to a .txt file and when I run it, I want to place myself at the last digit so I can manually change the final digit. This is what I got so far:
public static void main(String[] args) throws IOException
{
int[] a = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
File file = new File("text.txt");
if (!file.exists())
{
file.createNewFile();
}
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(" " + Arrays.toString(a));
bw.close();
System.out.println("Done!");
What this basically does is write ten digits in the form of an int array to a .txt file. Now how would I go about allowing myself to change the last digit, in this case: 10 through user input?
You have two separate problems. The first is how to get your "input". The data you want the user to add. To do that the simplest way would be to take a command line paramater in the arguments and use that as the final character.
so after doing the bw.write but before bw.close do
If you need to really wait for input but stay on the command line (rather than through a GUI) then you need to read from System.in()
The second problem is how to actually write to the correct point in the file. That can be done as per Chris' answer by reading the whole existing file and then writing back appending or it could be done by opening the file, seeking to the correct point, and then making the change. There is a Random Access Files system in Java that would help with this:
http://docs.oracle.com/javase/tutorial/essential/io/rafs.html