vote up 2 vote down star

ASP.NET JSON serialize DateTime to the following format "\/Date(1251877601000)\/". Pls, help parse this string into the java(GWT) Date object.

At this time the solution I came with is parsing with regex, extract long.. but then I cannot push long through JSNI.

flag

73% accept rate

1 Answer

vote up 1 vote down

Cannot You ask to produce date as string? That will be the simplest solution.

link|flag
+1, to avoid cross-framework date JSON serialization, doing it explicitly your own way is best if you control both sides. – orip Sep 9 at 21:37
I can, but there is no reason to do this. Even if I will have Date in string format, I still need to parse it. I ended with parsing string and then new Date(long). – Mike Chaliy Sep 11 at 11:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.