Farklı bir sınıftan bir yöntemi çağırmaya çalışıyorum, bu yüzden bu arabamda görünebilir. Benim kod aşağıda:BufferedWriter Java'da yazmıyor
public void Deposit(double amount) {
Bank bank = new Bank();
ArrayList<Client> customers = bank.getCustomers(); // Gets Customer Info from Bank
if (amount <= 0) {
System.err.println("You can not deposit that");
return;
} else {
checkInterest(0); // resets interest rates
amount = amount + amount * interest; //Applies interest to deposited amount
balance += amount; // Balance is == amount
System.out.println("You have deposited £" + amount + "Interest Rate of " + (interest * 100) + "%");
System.out.println("You now have a balance of £" + balance);
}
try {
FileWriter ac = new FileWriter("D:\\programming\\Java\\JavaBanking\\Transactions.txt", true);
BufferedWriter out = new BufferedWriter(ac);
String s = String.format("You have deposited the following amount:%n" + "£" + String.valueOf(amount) + "%nIn the account number:%n" +
getAccountNumber() + "%nAt: " + LocalDateTime.now() + "%nYour current balance is: £" + balance + "%n" + toString());
out.write(s);
//fw.write(t);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
Ben Bufferwriter içinde appeaing sınıf Müşteriden Temel Bilgi yöntemini almaya çalışırken, ama ne olur öyle mi am `
public class Client {
private Object fullName;
private Account account;
public Client(String fullName, Account account) { // Passes in First Name and Account Type
// TODO Auto-generated constructor stub
this.fullName = fullName; // Creates Fields
this.account = account; // Adds account to Customers
}
}
public String BasicInfo() { //Return
return "FullName: " + fullName + "\n" +
account + "Sort Code :" + SortCode();
}
BasicInfor- Müşteri sınıfı Bir şey yazmıyor, sadece boş bir arabelleğe aldığında BasicInfo'yı çıkarırsam her şey yazılır ve notta mükemmel bir şekilde görüntülenir, ancak hiçbir şey eklemezsem txt dosyasında görünür.
3kings @ sen gerekmez. –
Arabellek bir şey yapmasa da, yalnızca bir yazma gerçekleştirildiğinden. –
Kodun eksik olduğunu düşündüğünüz bir hata oluşturduğundan şüphelenirim. Hata ayıklayıcınızdaki koddan geçip 's ' –