
-----------------------------------
SsJBebiGoku
Sun Sep 19, 2004 3:16 pm

quick question writing to a file
-----------------------------------
Hi. 
I am trying to write to a file a bunch of mailing information and stuff but the cursor always gets set back to the beginning...is there a way to maybe make the cursor go down a line and keep writing from there or somehting? Here's the code, thanks a bunch: 


import java.io.*;

public class Mailing1RA
{
	public static void main(String args[]) throws IOException
	{
		String[] info = new String[5];
		String empty = "";
		
		InputStreamReader converter = new InputStreamReader(System.in);
		BufferedReader console = new BufferedReader(converter);
		
		for (int i = 0;i