vote up 1 vote down star

In GWT, what is the best way to convert a JavaScriptObject overlay type into a JSON string?

I currently have

public final String toJSON() {		
	return new JSONObject(this).toString();
}

Which seems to work fine. I would like to know if there are any better approaches.

flag

71% accept rate

1 Answer

vote up 1 vote down check

I've never actually tried that (only consumed JSON so far, never needed to produce it). This seems to be native browser/javascript functionality.

You could write it as:

public native String toJSON() /*-{
  return this.toString();
}-*/;

They essentially just do the exact same thing and likely result in identical JavaScript output. The optimizing compiler is really amazing.

link|flag

Your Answer

Get an OpenID
or

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