Android字符串变量(HH:mm)到长可变毫秒

时间:2013-03-22 02:12:59

标签: android string time format long-integer

我有一个格式为"HH:mm"的String变量。 可以说变量值是05:30。

我如何从字符串中获取这些数字并计算:

(05 * 60 * 60 * 1000)+(30 * 60 * 1000)并将该数字(毫秒)放入新的长变量中。

基本上我需要将String时间变量转换为miliseconds长变量。

3 个答案:

答案 0 :(得分:3)

s包含感兴趣的字符串。然后例如你可以说

    String s = "5:30";
    Pattern p = Pattern.compile("(\\d+):(\\d+)");
    Matcher m = p.matcher(s);
    if (m.matches()) {
        int hrs = Integer.parseInt(m.group(1));
        int min = Integer.parseInt(m.group(2));
        long ms = (long) hrs * 60 * 60 * 1000 + min * 60 * 1000;
        System.out.println("hrs="+hrs+" min="+min+" ms="+ms);
    } else {
        throw Exception("Bad time format");
    }

对于它的价值,一天只有86,400,000毫秒,所以你不需要longint足够大了。

答案 1 :(得分:2)

您可以使用SimpleDateFormat

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));

String inputString =  yourTime + ":00.000"; //Added to string to make HH:mm:ss.SSS format

Date date = sdf.parse("1970-01-01 " + inputString);
System.out.println("in milliseconds: " + date.getTime());        

答案 2 :(得分:1)

public static void main(String[] args) throws IOException {
    SimpleDateFormat simpleDateFormate = new SimpleDateFormat("HH:mm");
    simpleDateFormate.setTimeZone(TimeZone.getTimeZone("UTC"));
    String inputString = "05:30";
    Date date = null;
    try {
        date = simpleDateFormate.parse( inputString);
    } catch (ParseException e) {
        e.printStackTrace();
    }
    System.out.println("in millSeconds: " + date.getTime());  
    long yourvar=date.getTime();
}

使用SimpleDateFormat