JSON to JavaBean Generator

1. Paste JSON—class name and package are auto-generated. Download source as ZIP.

2. Supports any complex or simple JSON structure.

3. JSON format validation with error messages—invalid JSON is not formatted to ensure JavaBean accuracy.

4. If a JSON field is a Java keyword, use Gson's @SerializedName to alias it. Example:

private List< Default > default;

@SerializedName("default")

private List< Default > mdefault;