Completion requirements
This chapter explains Java's FileWriter class and how you can use it to store data in files.
17. Example Program
Answer:
Yes. No need to memorize that list of methods.
Example Program
Example Program
'\t'
is the tab character.
import java.io.*; import java.util.Scanner; class PowerTable { public static void main ( String[] args ) { // Get filename and create the file PrintWriter printer = null; Scanner scan = new Scanner( System.in ); String fileName = ""; System.out.print("Enter Filename-->"); try { fileName = scan.next(); // create the PrintWriter and enable automatic flushing printer = new PrintWriter( new BufferedWriter( new FileWriter( fileName )), true ); } catch ( IOException iox ) { System.out.println("Error in creating file"); return; } // Write out the table. int value = 1; printer.println( "Power\tValue" ); for ( int pow=0; pow<=20; pow++ ) { printer.print ( pow ); printer.print ( '\t' ); printer.println( value ); value = value*2; } printer.close(); } } |
Question 17:
Instead of using three statements in a row, would the following have worked as well?
out.println( pow + "\t" + value );