繁体   English   中英

在JAVA上打开文件

[英]opening files on JAVA

import java.util.Formatter;
import java.util.Scanner;

public class JavaApplication3 {

   public static void main( String[] args ) throws Exception
   {
      Formatter output = new Formatter( "clients.txt" ); // open the file
      Scanner input = new Scanner( System.in ); // reads user input

      int accountNumber; // stores account number
      String firstName; // stores first name
      String lastName; // stores last name
      double balance; // stores account balance

      System.out.printf( "%s\n%s\n%s\n%s\n\n",
         "To terminate input, type the end-of-file indicator ",
         "when you are prompted to enter input.",
         "On UNIX/Linux/Mac OS X type <ctrl> d then press Enter",
         "On Windows type <ctrl> z then press Enter" );

      System.out.printf( "%s\n%s", 
         "Enter account number (> 0), first name, last name and balance.",
         "? " );

      while ( input.hasNext() ) // loop until end-of-file indicator
      {
         // retrieve data to be output
         accountNumber = input.nextInt(); // read account number
         firstName = input.next(); // read first name
         lastName = input.next(); // read last name
         balance = input.nextDouble(); // read balance

         if ( accountNumber > 0 )
         {
            // write new record
            output.format( "%d %s %s %.2f\n", accountNumber, 
               firstName, lastName, balance );
         } // end if
         else
         {
            System.out.println(
               "Account number must be greater than 0." );
         } // end else

         System.out.printf( "%s %s\n%s", "Enter account number (>0),",
            "first name, last name and balance.", "? " );
      } // end while

      output.close(); // close file
   } // end main
} // end class CreateTextFile

但是当转到文件位置并打开txt文件时,那里没有任何东西。我使用Windows,我的问题是使用我认为的文件。.请帮助我如何在java.tnx中写文件

java.util.Formatter的输出不会立即写入。 调用flush() ,等待的数据将立即写入。

   if ( accountNumber > 0 )
     {
        // write new record
        output.format( "%d %s %s %.2f\n", accountNumber, 
           firstName, lastName, balance );
           output.flush();//missing this line
     }
java.util.Formatter will not write until flush() method is called.
    if ( accountNumber > 0 ){
    // write new record
    output.format( "%d %s %s %.2f\n",accountNumber,firstName,lastName,balance );
    output.flush(); // this is missed.
    } // end if`enter code here`

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM