我正在尝试在速度模板中迭代 JSONArray 但它不起作用 我发现velocity模板可以迭代集合,数组,哈希映射对象 任何人都可以帮我迭代JSONArray
先谢谢
答案 0 :(得分:1)
您可以使用自定义uberspector执行此操作。这使您可以自定义Velocity如何解释获取/设置/迭代器。
我最近为jsonlib做了同样的事情。这是我的uberspector。
package util;
import java.util.Iterator;
import net.sf.json.JSONArray;
import org.apache.velocity.util.introspection.Info;
import org.apache.velocity.util.introspection.SecureUberspector;
/**
* Customized Velocity introspector. Used so that FML can iterate through JSON arrays.
*/
public class CustomUberspector extends SecureUberspector
{
@Override
@SuppressWarnings("rawtypes")
public Iterator getIterator(Object obj, Info i) throws Exception
{
if (obj instanceof JSONArray)
{
return new JsonArrayIterator((JSONArray) obj);
}
else
{
return super.getIterator(obj, i);
}
}
}
JsonArrayIterator只是一个通过数组的简单迭代器。如果您使用的是其他JSON库,则只需自定义此类。
package util;
import java.util.Iterator;
import net.sf.json.JSONArray;
import net.sf.json.JSONException;
public class JsonArrayIterator implements Iterator<Object>
{
private final JSONArray array;
private int nextIndex;
private final int length;
public JsonArrayIterator(JSONArray array)
{
this.array = array;
nextIndex = 0;
length = array.size();
}
@Override
public boolean hasNext()
{
return nextIndex < length;
}
@Override
public Object next()
{
nextIndex++;
try
{
return array.get(nextIndex - 1);
}
catch (JSONException e)
{
throw new IllegalStateException(e);
}
}
@Override
public void remove()
{
throw new UnsupportedOperationException();
}
}
最后一步是在速度属性中指定uberspector。
runtime.introspector.uberspect=util.CustomUberspector