gpt4 book ai didi

java - 如何在每次点击字符串时更新当前时间和日期

转载 作者:行者123 更新时间:2023-11-29 18:56:18 24 4
gpt4 key购买 nike

我正在尝试使用当前日期和时间在 firebase 中填充我的子元素来自以下代码

   SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String millisInString = dateFormat.format(new Date());

btn_send_msg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

Map<String,Object> map = new HashMap<String, Object>();
temp_key = root.push().getKey();
root.updateChildren(map);

DatabaseReference message_root = root.child(temp_key);
Map<String,Object> map2 = new HashMap<String, Object>();
map2.put("name",user_name);
map2.put("msg",input_msg.getText().toString()+millisInString);


message_root.updateChildren(map2);
}
});

但我的问题是,它总是返回并保存一次

例如,如果我点击它就会保存

2018-04-16 10:17:54

如果我再次点击它会同时保存

2018-04-16 10:17:54

但是如果我重新启动我的应用程序,现在如果我点击它就会保存新的更新时间,

2018-04-16 10:18:54

除非我再次重启我的应用程序,否则会再次发生。

请帮忙

最佳答案

您需要在 btn_send_msgonClick() 方法中获取当前时间和日期

试试这个

btn_send_msg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String millisInString = dateFormat.format(new Date());

Map<String,Object> map = new HashMap<String, Object>();
temp_key = root.push().getKey();
root.updateChildren(map);

DatabaseReference message_root = root.child(temp_key);
Map<String,Object> map2 = new HashMap<String, Object>();
map2.put("name",user_name);
map2.put("msg",input_msg.getText().toString()+millisInString);


message_root.updateChildren(map2);
}
});

关于java - 如何在每次点击字符串时更新当前时间和日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49849769/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com