将字符串格式的 Facebook JSONcreated_time 转换为长格式

发布于 2024-11-27 03:08:29 字数 315 浏览 2 评论 0原文

我正在开发android应用程序并尝试从facebook JSON获取created_time。我成功了,得到了 2011-07-14T12:28:52+0000

现在应该将其转换为长格式,例如 220200202932093

我现在的挑战是将其转换为长格式。

这是因为我计划在 android 中使用 getRelativeTimeSpanString 来获取相对时间。

请帮我将字符串格式的时间从 JSON 对象转换为长格式

I'm working on android app and trying to get created_time from facebook JSON. I was successful in that and I got it as 2011-07-14T12:28:52+0000 .

Now this should be converted into long format like 220200202932093

My challenge now is to convert that into long format.

This is because i have planned to get relative time using getRelativeTimeSpanString in android.

Please help me to convert String formatted time from JSON object to long format

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

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

发布评论

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

评论(1

玩心态 2024-12-04 03:08:29
String exampleDateString = "2011-07-14T12:28:52+0000";
try 
{
    long timeMillis = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss+SSSS")
        .parse(exampleDateString)
        .getTime();
} catch (Exception e) {
    e.printStackTrace();
}
String exampleDateString = "2011-07-14T12:28:52+0000";
try 
{
    long timeMillis = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss+SSSS")
        .parse(exampleDateString)
        .getTime();
} catch (Exception e) {
    e.printStackTrace();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文