Merge pull request #1044 from yuki-matsuhashi/1043-ignore-static

Ignore static fields in JSONObject.fromJson()
This commit is contained in:
Sean Leary
2026-03-16 09:24:24 -05:00
committed by GitHub
3 changed files with 32 additions and 1 deletions

View File

@@ -3349,7 +3349,7 @@ public class JSONObject {
* of the given class. It supports basic data types including {@code int}, {@code double}, * of the given class. It supports basic data types including {@code int}, {@code double},
* {@code float}, {@code long}, and {@code boolean}, as well as their boxed counterparts. * {@code float}, {@code long}, and {@code boolean}, as well as their boxed counterparts.
* The target class must have a no-argument constructor, and its field names must match * The target class must have a no-argument constructor, and its field names must match
* the keys in the JSON string. * the keys in the JSON string. Static fields are ignored.
* *
* <p><strong>Note:</strong> Only classes that are explicitly supported and registered within * <p><strong>Note:</strong> Only classes that are explicitly supported and registered within
* the {@code JSONObject} context can be deserialized. If the provided class is not among those, * the {@code JSONObject} context can be deserialized. If the provided class is not among those,
@@ -3366,6 +3366,9 @@ public class JSONObject {
try { try {
T obj = clazz.getDeclaredConstructor().newInstance(); T obj = clazz.getDeclaredConstructor().newInstance();
for (Field field : clazz.getDeclaredFields()) { for (Field field : clazz.getDeclaredFields()) {
if (Modifier.isStatic(field.getModifiers())) {
continue;
}
field.setAccessible(true); field.setAccessible(true);
String fieldName = field.getName(); String fieldName = field.getName();
if (has(fieldName)) { if (has(fieldName)) {

View File

@@ -66,6 +66,7 @@ import org.json.junit.data.CustomClassF;
import org.json.junit.data.CustomClassG; import org.json.junit.data.CustomClassG;
import org.json.junit.data.CustomClassH; import org.json.junit.data.CustomClassH;
import org.json.junit.data.CustomClassI; import org.json.junit.data.CustomClassI;
import org.json.junit.data.CustomClassJ;
import org.json.JSONObject; import org.json.JSONObject;
import org.junit.After; import org.junit.After;
import org.junit.Ignore; import org.junit.Ignore;
@@ -4232,4 +4233,21 @@ public class JSONObjectTest {
CustomClassI compareClassI = new CustomClassI(dataList); CustomClassI compareClassI = new CustomClassI(dataList);
assertEquals(customClassI.integerMap.toString(), compareClassI.integerMap.toString()); assertEquals(customClassI.integerMap.toString(), compareClassI.integerMap.toString());
} }
@Test
public void jsonObjectParseFromJson_9() {
JSONObject object = new JSONObject();
object.put("number", 12);
object.put("classState", "mutated");
String initialClassState = CustomClassJ.classState;
CustomClassJ.classState = "original";
try {
CustomClassJ customClassJ = object.fromJson(CustomClassJ.class);
assertEquals(12, customClassJ.number);
assertEquals("original", CustomClassJ.classState);
} finally {
CustomClassJ.classState = initialClassState;
}
}
} }

View File

@@ -0,0 +1,10 @@
package org.json.junit.data;
public class CustomClassJ {
public static String classState = "original";
public int number;
public CustomClassJ() {
// Required for JSONObject#fromJson(Class<T>) tests.
}
}