本周我的任务是创建一个虚拟ATM,可以执行添加,取款和支票余额等基本功能。
我遇到的问题是将用户信息存储在一个文件中供以后使用。
如果用户已经拥有一个帐户,我需要将他们的所有帐户信息存储在某处,以便我们可以将其提取,如果他们有匹配的ID和PIN码。
如果用户没有帐户,那么我需要让他们填写表单,让它生成帐号,PIN以及初始存款。除了将其实际存储到文件中供以后使用外,我已经完成了所有这些工作。
我想将每个新用户对象存储到ArrayList
中,然后将其写入外部文件。
然而,之前我从来没有这么做过,而且我一直在寻找,我似乎无法找到对我有用的东西。
所以我的主要问题是,如何将ArrayList
用户存储到外部文件中,以及当用户具有匹配的ID和PIN时,如何稍后返回并将其拉回到程序中,这样他们就可以在帐户中添加或删除资金。
这是我已经的代码
ATM /主类
import java.util.Scanner;
public class ATM {
public static void main(String[] args) {
//variables
String dash = "-------------------\n";
// Scanner
Scanner scanner = new Scanner(System.in);
//Welcome screen
System.out.print(dash);
System.out.print("Welcome to the Bank\n");
System.out.print(dash);
System.out.println("Do you have an account with us? (y/n) ");
String answer = scanner.nextLine();
if (answer.equalsIgnoreCase("y")) {
} else {
// new user is created
Bank bank = new Bank();
System.out.println("Enter your full name below (e.g. John M. Smith): ");
String name = scanner.nextLine();
System.out.println("Create a username: ");
String userName = scanner.nextLine();
System.out.println("Enter your starting deposit amount: ");
int balance = scanner.nextInt();
System.out.print(dash);
System.out.print("Generating your information...\n");
System.out.print(dash);
int pin = bank.PIN();
String accountNum = bank.accountNum();
User user = new User(name, userName, pin, accountNum, balance);
//new user gets added to the array list
Bank.users.add(user);
System.out.println(user);
}
}
}
包含PIN的银行类,帐号生成器和ArrayList
import java.util.ArrayList;
import java.util.Random;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.IOException;
public class Bank {
//Generate a random 16 digit bank account number
public String accountNum() {
int max = 9999;
int min = 1000;
int a1 = (int) (Math.random() * (max - min) + min);
int a2 = (int) (Math.random() * (max - min) + min);
int a3 = (int) (Math.random() * (max - min) + min);
int a4 = (int) (Math.random() * (max - min) + min);
String accountNum = a1 + "-" + a2 + "-" + a3 + "-" + a4;
return accountNum;
}
//Generate a random 4 digit PIN
public int PIN() {
int max = 9999;
int min = 1000;
int PIN = (int) (Math.random() * (max - min) + min);
return PIN;
}
//array list for users
@SuppressWarnings("serial")
static ArrayList<User> users = new ArrayList<User>() {
};
}
用户类,用户对象在这里
public class User {
String name;
String userName;
String accountNum;
int pin;
int balance;
public User(String name, String userName, int pin, String accountNum, int balance) {
this.name = name;
this.userName = userName;
this.accountNum = accountNum;
this.pin = pin;
this.balance = balance;
}
public String toString() {
return "Name: " + this.name + "\n\nUsername: " + this.userName + " | " + "Pin: " + this.pin + "\n\n"
+ "Account Number: " + this.accountNum + "\n\nAccount Balance: $" + this.balance +
"\n\nNever share your login information with anyone!";
}
}
答案 0 :(得分:0)
您可以将对象编写为XML文件。要做到这一点,请参考诸如JAXB之类的API来进行Java / XML转换。
仅供参考,如果我有同样的问题要处理,我会使用数据库而不是文件:更容易维护,更新并对对象属性或值进行一些搜索。 例如,PostgreSQL是免费且易于使用的。