我使用以下代码将字符串转换为日期,但它在转换时应用了设备的时区。
我不需要这个,但我想从那个字符串中获得相同的日期/时间,比如
String = "2009-07-31 07:59:17.427"
Date = 2009-07-31 07:59:17.427
Date formatter = new Date(HttpDateParser.parse("2009-07-31 07:59:17.427"));
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
String strCustomDateTime = dateFormat.format(formatter);