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 244573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:00:58+00:00 2026-05-11T21:00:58+00:00

I am using the Struts iterator tag and trying to get 3 elements of

  • 0

I am using the Struts iterator tag and trying to get 3 elements of my list in 1 iteration.

This is what I have.

<s:iterator status="stat" value="(secondResultSet.size()/3).{ #this}" >
   <s:property value="#stat.count" /> <!-- Note that "count" is 1-based, "index" is 0-based. -->
   <s:property value="%{secondResultSet.get(#stat.index).altId}"/>
   <s:property value="%{secondResultSet.get(#stat.index+1).altId}"/>
   <s:property value="%{secondResultSet.get(#stat.index+2).altId}"/>
</s:iterator>

my list has 18 elements and in a single iteration I want to print out 3 elements. Thats why I am dividing the length of list by 3. So loop will run 6 times…in total printing out 18 elements.

For this example different altId my list contains are: 41 – 58 (18). However, the code I have prints out the following

First Iteration: 41 42 43
Second Iteration: 42 43 44
Third Iteration: 43 44 45

So it seems like the counter is not getting updated. Can someone help me with this?

  • 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-05-11T21:00:58+00:00Added an answer on May 11, 2026 at 9:00 pm

    for someone else trying to do this…

    Best way is to create the list in your class like so:

    public void generateIteratorList()
    {
        iterList = new ArrayList();
        int value = 0;
        for (int i = 0; i < (getSecondResultSet().size()/3); i++)
        {
            iterList.add(value);
            value+=3;
        }
    }
    

    and then use s:iterator tag like so:

    <s:iterator status="stat" value="iterList" >
       <s:property value="%{secondResultSet.get(top).altId}" />
       <s:property value="%{secondResultSet.get(top+1).altId}" />
       <s:property value="%{secondResultSet.get(top+2).altId}" />
    </s:iterator>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 192k
  • Answers 192k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Use SystemWrapper, a library which provides interfaces and mockable wrappers… May 12, 2026 at 6:21 pm
  • Editorial Team
    Editorial Team added an answer My advice is don't solve a problem until you have… May 12, 2026 at 6:21 pm
  • Editorial Team
    Editorial Team added an answer Using a partial in Spark looks just like a custom… May 12, 2026 at 6:21 pm

Related Questions

I am using strus2 tags in a jsp to iterate over a collection: <s:if
I am tasked with developing a web application and am thinking of using the
I have a numeric database field (numeric(3) in SQL Server 2000) that allows nulls,
I am using the next class (simplified for the sake of understandability) to download

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.