在Android中,可以使用DateTimeFormatter类来解析带有时区的日期时间。下面是一个使用DateTimeFormatter解析带有时区的日期时间的示例代码:
import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 定义日期时间格式
String pattern = "yyyy-MM-dd HH:mm:ss z";
// 创建DateTimeFormatter对象
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(pattern);
// 获取当前日期时间
LocalDateTime localDateTime = LocalDateTime.now();
// 将日期时间转换为带有时区的ZonedDateTime对象
ZonedDateTime zonedDateTime = ZonedDateTime.of(localDateTime, ZoneId.systemDefault());
// 将带有时区的日期时间格式化为字符串
String formattedDateTime = zonedDateTime.format(formatter);
// 输出格式化后的日期时间字符串
Log.d("DateTime", formattedDateTime);
// 解析带有时区的日期时间字符串
ZonedDateTime parsedDateTime = ZonedDateTime.parse(formattedDateTime, formatter);
// 输出解析后的日期时间
Log.d("Parsed DateTime", parsedDateTime.toString());
}
}
上述代码中,我们首先定义了日期时间的格式,然后使用DateTimeFormatter类创建了一个格式化对象。接下来,我们获取当前的日期时间,将其转换为带有时区的ZonedDateTime对象,并使用DateTimeFormatter将其格式化为字符串。最后,我们使用同样的DateTimeFormatter对象解析这个格式化后的字符串,得到一个ZonedDateTime对象。
需要注意的是,在Android中,Java 8的日期时间API(java.time包)是在Android API级别26(Android 8.0)及以上才可用。如果你的应用的最低支持版本低于API级别26,你可以考虑使用第三方库,如ThreeTenABP,以便在较低版本的Android设备上使用Java 8的日期时间API。