Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6016023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:55:25+00:00 2026-05-23T02:55:25+00:00

I cant quite figure out what the format should be to parse this date.

  • 0

I cant quite figure out what the format should be to parse this date. Its a millisecond value followed by timezone. thx.

// so far tried:   "S Z"
//                "SSSSSSSSSSS-ZZZZ",
//                "SSSSSSSSSSS-Z",
// etc.

Format formatter = new SimpleDateFormat("SSSSSSSSSSSS Z", Locale.CANADA);

// source string looks like this /Date(928164000000-0400)/
String temp = jsonUserObj.getString("DateOfBirth").substring(6, 6+17);
System.err.println("got date="+temp);
Date date = (Date) formatter.parseObject(temp);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:55:26+00:00Added an answer on May 23, 2026 at 2:55 am

    You can do it without parser.

    String[] parts = new String[]{temp.substring(0, temp.indexOf('-')), temp.substring(temp.indexOf('-') + 1)};
    long millis = Long.parseLong(parts[0]);
    parts[1] = parts[1].replaceAll("^0*(\\-?[0-9]*)$", "$1");
    int timeZone = Integer.parseInt(parts[1]);
    
    int rawOffset = (timeZone / 100) * 3600000 + (timeZone % 100);
    
    GregorianCalendar cal = new GregorianCalendar();
    cal.setTimeInMillis(millis);
    cal.setTimeZone(new SimpleTimeZone(rawOffset, "GMT"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I cant quite figure out how to convert this: $(function() { $(.cell_1 a).live('mouseover', function(){
I can't quite figure out this syntax problem with a case expression in a
I can't quite figure out why this Linq Statement isn't working as i would
I can't quite figure this out. Microsoft Access 2000, on the report total section
I've been trying this for quite a while now, but can't figure it out.
I Have a quite simple question that I just cant figure out. The method
Been reading here for quite a while now.. But cant seem to figure out
Can't quite figure out what else I need to do to make this work.
I can't quite figure out what's going wrong. This was working earlier today and
This is probably a very obvious question but I can't quite figure it out.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.