Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:17:27+00:00 2026-06-10T10:17:27+00:00

I am trying to iterate JSONArray in velocity template but its not working I

  • 0

I am trying to iterate JSONArray in velocity template
but its not working
I found velocity template can iterate collection, array,hash-map objects
Anyone can help me to iterate JSONArray

Thanks in Advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:17:28+00:00Added an answer on June 10, 2026 at 10:17 am

    You can do this with a custom uberspector. This lets you customize how Velocity interprets gets/sets/iterators.

    I did the exact same thing recently for jsonlib. Here’s my 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 is just a simple iterator through the array. if you are using a different JSON library, just customize this class.

    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();
        }
    
    
    }
    

    The final step is to specify the uberspector in your velocity properties.

    runtime.introspector.uberspect=util.CustomUberspector
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to iterate through array of objects in PHP, but I can't
I'm trying to iterate over a map in c++ using openMP, but I got
I'm trying to iterate over the Color class' Color properties. Unfortunately its not in
I'm trying to iterate through a list of folders, but I can't seem to
I am trying to iterate through the SPListItem.Versions collection to find the latest approved
I'm trying to iterate through all nodes, so I can print them out for
I'm trying to iterate through an array of objects and recursively print out each
I'm trying to iterate over the items on my start menu, but I keep
I'm trying to iterate over an Enumerable collection of mix of nullable types However
I'm trying to iterate over a collection of objects and create an annotation for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.