Mais Duvidas sobre Array

Ola eu fiz o seguinte codigo e gostaria de saber como que faço a impressao depois desse array.

public class SepararArquivos {

protected String record;
protected String[] campos;

public static void main(String args[]) {


	
	try {
		// abre o arquivo
		FileInputStream is = new FileInputStream("Meu Arquivo");
		FileInputStream ds = new FileInputStream ("Meu Arquivo");
		// chama o metodo
		leFluxo(is);
		System.out.println();
		leFluxo (ds);
		// fecha o arquivo
		is.close();
		ds.close();
	} catch (IOException ex) {
		System.out.println(ex.getMessage());
	  }
	
	
}

public static void leFluxo(InputStream is) throws IOException {
	InputStreamReader reader = new InputStreamReader(is);
	BufferedReader buffer = new BufferedReader(reader);

	TesteJobStarted a = new TesteJobStarted ();
	
	String linha = null;
	while( (linha = buffer.readLine()) != null);
	
	
	if (linha.equals("[JobStarted]")){
		
			//Exemplo pra ler a linha DateTimeStamp=19/11/2004,14:18:13
			String lendo = buffer.readLine();
			String nome = lendo.substring(0,1);  
			System.out.println (a.getDateTimeStamp());
			System.out.println ("TESTE");
			
				//nome = DateTimeStamp=
				if( nome.equals("DateTimeStamp=")){
					a.setDateTimeStamp(lendo);
					System.out.println (a.getDateTimeStamp());
				}	
		}
	
}

}

Oi

Rafael_Oliveira, qual array quer imprimir? :confuso:

T+

denovo eu venho lembrar q existem as tags [ code ] e [ /code ]
[]s