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

发布于 2024-11-15 17:52:44 字数 139 浏览 4 评论 0原文

我的日期采用这种格式yyyy-mm-dd,并将这种格式的日期保存为字符串。现在我有了字符串,我想知道如何在 3 个不同的字符串中获取 yyyymmdd

I have my date in this format yyyy-mm-dd and I save the date in this format as a String. Now I have the String and I want to know how can I get yyyy, mm or dd in 3 different String.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟雨凡馨 2024-11-22 17:52:44

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

String date = "2011-06-15";

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

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

如果您的日期以不同的格式结束,这将不起作用。

If you know for sure that every single time it will be in that same format you can do a string split on that string, and get the values from the resulting array.

String date = "2011-06-15";

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

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

This won't work if your date ends up in a different format.

友谊不毕业 2024-11-22 17:52:44
data = "2011-06-15";
String[] strings = data.split("-");
// strings[0] = "2011"
// strings[1] = "06"
// strings[2] = "15"
data = "2011-06-15";
String[] strings = data.split("-");
// strings[0] = "2011"
// strings[1] = "06"
// strings[2] = "15"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文