public class TextFileOutput_App1 { public static void main(String f[]) { File file = null; if( args.length > 0) file = new File(args[0]); if( file == null ) { System.out.println("Default: textOutput.txt"); file = new File("textOutput.txt"); }
// Read the bytes directly and count them. try { int tmp = 0; FileWriter fileWriter = new FileWriter( file );
// Read characters from the console and write // to the file. while ( (tmp=System.in.read()) != -1 ) { // Write one character at a time to the file. fileWriter.write( (char) tmp ); } fileWriter.close(); } catch (IOException e) { System.out.println( "IO error:" + e ); }
// Compare to the File class value. System.out.println("File.length() = " + f.length() ); }
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.