我的問題是,我無法弄清楚如何使用文件讀取器讀取客戶名稱。使用文件讀取器讀取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());
}
}
}
你可以發佈你到目前爲止的代碼嗎? – hmjd 2012-03-06 17:33:21
@hmjd,更新的問題(: – PauloPawelo 2012-03-06 17:47:19
來自JavaScript標記工具提示:「...它[JavaScript]與Java不同。」 – 2012-03-06 17:49:03