标签: android firebase android-studio firebase-realtime-database
一段时间以来,我一直在寻找答案,但是找不到对应于我的答案。
我已经将一个人的出生日期存储在firebase中作为字符串。我已经使用onDataChange正确地检索了它。但是,当我需要计算该人的年龄并且无法从该字符串中提取年份时,就会出现问题。谁能帮我吗?
firebase
onDataChange
谢谢
答案 0 :(得分:-1)
分割您的String并采用这样的最后一个值:
int year = Integer.parseInt(date.split("/")[2]);