Can someone tell me why my data is not printing to my file. It will create the text file but it will not write to it.
Here is a snippett:
out = new PrintWriter("completeAuto.txt");
while ((car = br.readLine()) != null && (van = br1.readLine())!=null && (truck = br2.readLine()) != null)
{
out.print (car );
out.print(truck);
}
Thanks