gpt4 book ai didi

java - 将 textView 转换为字符串

转载 作者:行者123 更新时间:2023-11-29 20:11:48 26 4
gpt4 key购买 nike

TextView totalHours;
String TotalHours;
totalHours.setText(("Total hours : " + hours + ":" + minutes));

假设输出是Totalhours :13:25

现在我想将 totalHours 转换为 String 并将 13:25 保存到 MySQL 中。

 TotalHours=totalHours.getText().toString();
String[] time= TotalHours.split(":", 2);
addInformation(time[1]);

这是将 textView 转换为 String 的正确方法吗?

最佳答案

最好你可以通过字符串转换直接存储你的变量小时,分钟。

  hours.toString();

String.valueOf(hours)

关于java - 将 textView 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34690488/

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