如何将数据从一种格式转换为另一种格式

时间:2011-06-15 17:56:05

标签: android string dataformat

我的日期格式为yyyy-mm-dd,我将此格式的日期保存为字符串。现在我有了String,我想知道如何在3个不同的String中获得yyyymmdd

2 个答案:

答案 0 :(得分:1)

如果您确定每次都使用相同的格式,您可以对该字符串执行字符串拆分,并从结果数组中获取值。

String date = "2011-06-15";

String[] dates = date.split("-");

String year = dates[0];
String month = dates[1];
String day = dates[2];

如果您的日期以不同的格式结束,则无效。

答案 1 :(得分:0)

data = "2011-06-15";
String[] strings = data.split("-");
// strings[0] = "2011"
// strings[1] = "06"
// strings[2] = "15"