我的程序是一个简单的聊天室。价值观通过注册部分的文本字段从用户写入,并创建一个帐户。我有一个名为“account”的类,它采用相同的值并且它包含相同的字段。所有帐户都需要保存和加载,以便以后实现。我使用了下面的代码(这是程序代码的一部分),但有一个问题。我打印了价值观加载后发现它报告的是空值。然后将新帐户添加到数组后,列出所有值在列表中被更改为附加值。例如,我创建并保存了一个名为“a”的帐户和电子邮件“a”,然后再次运行该程序。在此处添加名称和电子邮件为“b”的帐户将打印两个帐户b。有什么问题?
String email= t4.getText();
String password=t5.getText();
String name=t1.getText();
String family=t2.getText();
String phoneNumber=t3.getText();
try {
FileInputStream f = new FileInputStream("accounts.txt");
ObjectInputStream obj = new ObjectInputStream(f);
int size=obj.readInt();
for (int i = 0; i <size ; i++) {
accounts.add((Account)obj.readObject());
}
} catch (Exception e){
e.printStackTrace();
}
for (int i = 0; i <accounts.size() ; i++) {
System.out.println(accounts.get(i).name+" "+accounts.get(i).email);
}
Account account = new Account(name,family,phoneNumber,email,password);
accounts.add(account);
try{
FileOutputStream f=new FileOutputStream("accounts.txt",false);
ObjectOutputStream obj=new ObjectOutputStream(f);
obj.writeInt(accounts.size());
for (Account a:accounts) {
obj.writeObject(a);
}
} catch (Exception e){
e.printStackTrace();
}
for (int i = 0; i <accounts.size() ; i++) {
System.out.println(accounts.get(i).name+" "+accounts.get(i).email);
}
//class account
class Account implements Serializable {
static String name, family, phoneNumber, email, password;
static ArrayList<Post> posts = new ArrayList();
static ArrayList<Account> following = new ArrayList();
static ArrayList<Account> follower = new ArrayList();
Account(String n, String f, String pn, String e, String ps) {
name = n;
family = f;
phoneNumber = pn;
email = e;
password = ps;
}
void follow(Account user) {
following.add(user);
user.follower.add(this);
}
void post(String data) {
Post post = new Post(data, new Date(), this);
posts.add(post);
for (Account account : follower) {
account.posts.add(post);
}
}
}
1条答案
按热度按时间hpxqektj1#
全体会员
Account
班级是static
,表示它们属于类而不是特定示例。把它们做成非静态的,你就可以走了。