2012-03-06 112 views
0

我的問題是,我無法弄清楚如何使用文件讀取器讀取客戶名稱。使用文件讀取器讀取txt文件中的客戶名稱

我正在預訂系統,我需要知道客戶已經存在。這就是爲什麼我必須閱讀我的Customers.txt文件,以便檢查是否有人已經是客戶。如果他不是,我會用文件編寫器創建一個新的(我已經有了代碼)。

該預訂系統的含義是與理髮師進行預訂。我必須將預訂放在另一個名爲Reservations.txt的txt文件中,並且在該文件中,您可以看到每個預訂時間和預訂人員。

感謝您的幫助!

這是我已經有了代碼: (有些評論是在荷蘭,但我將它們翻譯)

package nielbutaye; 
import java.io.*; 
import java.util.UUID; 
/** 
* @author Niel 
* 
*/ 
public class Klant { 
    //declaration that represents the text 
    public static String S; 

    public static String NEWLINE = System.getProperty("line.separator"); 

/** 
* constructor 
*/ 
public Klant(){} 

/** 
* @return 
* By giving the name of the customer you will get all the data from the customer 
*/ 
public double getCustomer() { 


    return 0 ; 
} 

/** 
* Make a new customer 
*/ 

public void setNew customer(){ 
    // make a newSimpleInOutDialog  
    SimpleInOutDialog input = new SimpleInOutDialog("A new customer"); 
    //input 
    S = "Name customer: " + input.readString("Give in your name:"); 
    WriteToFile(); 
    S = "Adress: " + input.readString("Give your adress"); 
    WriteToFile(); 
    S = "Telephonenummber: " + input.readString("Give your telephonenumber"); 
    WriteToFile(); 
    //making a customerID 
     UUID idCustomer = UUID.randomUUID(); 
    S = "CustomerID: " + customerID.toString(); 
    WriteToFile(); 

} 

public void WriteToFile(){ 
try{ 

    FileWriter writer = new FileWriter("L:\\Documents/Informatica/6de jaar/GIP/Customer.txt", true); 
    BufferedWriter out = new BufferedWriter(writer); 
    //Wrting away your data 
    out.write(S + NEWLINE); 
    //Closing the writer 
    out.close(); 


}catch (Exception e){//Catch when there are errors 
    System.err.println("Error: " + e.getMessage()); 
    } 
    } 
} 
+0

你可以發佈你到目前爲止的代碼嗎? – hmjd 2012-03-06 17:33:21

+0

@hmjd,更新的問題(: – PauloPawelo 2012-03-06 17:47:19

+1

來自JavaScript標記工具提示:「...它[JavaScript]與Java不同。」 – 2012-03-06 17:49:03

回答

0

一個BufferedReader()有一個名爲readLine()方法,你可以用它來讀取一個行文件:

BufferedReader br = new BufferedReader(new FileReader("Customers.txt")); 
String line; 

while ((line = br.readLine()) != null) 
{ 
    ... 
} 

br.close(); 

從你WriteToFile()方法似乎客戶的詳細信息佔有四行,與出現在第一行的客戶名稱。在搜索客戶時,安排while循環以僅檢查每四行讀取。

其他景點:

  • 有似乎是S是一個成員變量,請不要介意一個static沒有理由。只需在setNewCustomer()中聲明本地String實例並將其作爲參數傳遞給WriteToFile()即可。
  • 而不是定義一個NEWLINE變量,您可以使用BufferedWriternewLine()方法。
+0

Oke謝謝你的迴應,你能告訴我在哪裏放BufferedWriter的newLine ()方法在代碼中,因爲我不知道.. – PauloPawelo 2012-03-06 18:04:48

+0

'out.write(S); out.newLine();' – hmjd 2012-03-06 18:06:11