gpt4 book ai didi

java - 将字符串 "8:00"转换为分钟(整数值)

转载 作者:行者123 更新时间:2023-12-01 06:53:35 26 4
gpt4 key购买 nike

我正在从 CSV 文件读取数据。其中一个字段是格式为 H:mm 的时间,即“8:00”。如何将此字符串值转换为分钟(整数值),即 8:00 = 8*60 = 480 分钟?

String csvFilename = "test.csv";
CSVReader csvReader = new CSVReader(new FileReader(csvFilename));
String[] row = null;
csvReader.readNext(); // to skip the headers
int i = 0;
while((row = csvReader.readNext()) != null) {
int open = Integer.parseInt(row[0]);
}
csvReader.close();

最佳答案

您可以使用java.text.SimpleDateFormatString转换为Date。然后java.util.Calendar提取小时和分钟。

Calendar cal = Calendar.getInstance();

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
Date date = sdf.parse("8:00");
cal.setTime(date);

int mins = cal.get(Calendar.HOUR)*60 + cal.get(Calendar.MINUTE);

关于java - 将字符串 "8:00"转换为分钟(整数值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18656857/

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