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 7194439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:22:16+00:00 2026-05-28T20:22:16+00:00

I have a JSON response which contains a timestamp, but I’m having some issues

  • 0

I have a JSON response which contains a timestamp, but I’m having some issues parsing it to a date object. I’m having the same difficulty serializing it back into the same format as well. I’m using Gson to decode the JSON responses to objects and this is the only spot I’m having a hicup with.

    "TimeStamp":"\/Date(1327650052632+0000)\/"

I did have a look at the custom serialize/deserialize adapters, but couldn’t make heads or tails from it.

Regards,
EZFrag

  • 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-28T20:22:18+00:00Added an answer on May 28, 2026 at 8:22 pm

    I managed to understand the adapters (sort of). Here is the code I used:

    private Gson createGson(){
    
        JsonSerializer<Date> ser = new JsonSerializer<Date>() {
              @Override
              public JsonElement serialize(Date src, Type typeOfSrc, JsonSerializationContext 
                         context) {
                return src == null ? null : new JsonPrimitive("\\/Date("+src.getTime()+"+0000)\\/");
              }
            };
    
            JsonDeserializer<Date> deser = new JsonDeserializer<Date>() {
              @Override
              public Date deserialize(JsonElement json, Type typeOfT,
                  JsonDeserializationContext context) throws JsonParseException {
                  String tmpDate = json.getAsString();
    
                  Pattern pattern = Pattern.compile("\\d+");
                  Matcher matcher = pattern.matcher(tmpDate);
                  boolean found = false;
    
                  while (matcher.find() && !found) {
                       found = true;
                        tmpDate = matcher.group();
                  }
    
    
                return json == null ? null : new Date(Long.parseLong(tmpDate));
              }
            };
    
    
        return new GsonBuilder().serializeNulls()
                .registerTypeAdapter(Date.class, ser)
                .registerTypeAdapter(Date.class, deser).create();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a search action that returns a json response object which is basically
We have a JSON response which can contain null values (e.g. { myValue: null
I have the following JSON object: { response: { status: 200 }, messages: [
I'm trying to generate a JSON response that includes some HTML. Thus, I have
When I view my response I have my json data but at the bottom
I have a large json server response which nests models in models. I have
i have the following JSON response, but i am not sure how to properly
I'm having some problems with getting to the object which is returned by one
I have a JSON response that is formatted from my C# WebMethod using the
I have two JSON objects with the same structure and I want to concat

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.