保存并读取整数 Firestore Android

Save and Read Integer Firestore Android

我正在尝试为我的 Android 游戏创建一个简单的统计数据 activity。我正在使用新的 Firestore 数据库。我已经能够将包含总分、最近得分、平均得分、总游戏数和高分的文档保存到我的 Firestore 数据库中,但是当我尝试从数据库中读回数据时,它 returns 为空.

public void readFromDB(){
    statsDoc.get().addOnSuccessListener(new OnSuccessListener<DocumentSnapshot>() {
        @Override
        public void onSuccess(DocumentSnapshot documentSnapshot) {
            if(documentSnapshot.exists()){
                UserData userdata = documentSnapshot.toObject(UserData.class);
            }
        }

我的用户数据class:

/* Copyright statement */

package com.squidstudios.android.balloonpopper.utils;

import com.google.firebase.database.IgnoreExtraProperties;

/**
 * UserData.java
 *
 * This class represents a single user's data including username, email, number of points earned,
 * a saved state of their progress towards earning a single point, and their password.
 */
@IgnoreExtraProperties
public class UserData {
    public String email;
    public int total_points;

public int avg_score;
public int high_score;
public int total_games;
public int prev_score;

public UserData() {
    // Default constructor required for calls to DataSnapshot.getValue(UserData.class)
}


public int getTotal_games() {
    return total_games;
}

public void setTotal_games(int total_games) {
    this.total_games = total_games;
}

public int getTotal_points() {
    return total_points;
}

public void setTotal_points(int total_points) {
    this.total_points = total_points;
}

public int getAvg_score() {
    return avg_score;
}

public void setAvg_score(int avg_score) {
    this.avg_score = avg_score;
}

public int getHigh_score() {
    return high_score;
}

public void setHigh_score(int high_score) {
    this.high_score = high_score;
}


public String getEmail() {
    return email;
}

public void setEmail(String email) {
    this.email = email;
}

public int getPrev_score() {
    return prev_score;
}

public void setPrev_score(int prev_score) {
    this.prev_score = prev_score;
}

}

当我用字符串测试它时它工作正常但由于某些原因整数不工作。提前致谢!

在做了一些测试后,我得出结论,我们必须将 Longs 转换为 Integers,因为这是我们从 firestore 中获取 "Number" 得到的结果。 这是我的数据:


单击字段末尾的 "edit" 图标,确保您存储了 "Number":


使用它来进行转换:Safely casting long to int in Java

我的代码如下所示:

int money = snapshot.getLong("money").intValue();


随时要求进一步解释!

enter code here 浮动总金额 = Float.parseFloat (String.valueOf(ObjectsrequireNonNull(getSnapshots().getSnapshot(position).getLong("TotalAmount"))));

试试........ 101 %%%%