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

  • SEARCH
  • Home
  • 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 7751897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:39:57+00:00 2026-06-01T11:39:57+00:00

I am using <ui:repeat> for displaying a list. Now I want to export whole

  • 0

I am using <ui:repeat> for displaying a list. Now I want to export whole list to the CSV file. Is there any way to do this in JSF 2.0?

  • 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-01T11:39:59+00:00Added an answer on June 1, 2026 at 11:39 am

    Yes, there’s a way. Add a command button which says “export”.

    <h:form>
        <h:commandButton value="export" action="#{bean.export}" />
    </h:form>
    

    Then, in the export() method, iterate over the List<Something> which you’re displaying there in the <ui:repeat> and print each row/column in valid CSV format. The CSV format rules are very simple, there are only 3:

    • Fields are separated by a comma.
    • If a comma occurs within a field, then the field has to be surrounded by double quotes.
    • If a double quote occurs within a field, then the field has to be surrounded by double quotes and the double quote within the field has to be escaped by another double quote.

    So it’ll look something like this:

    public void export() throws IOException {
        FacesContext fc = FacesContext.getCurrentInstance();
        ExternalContext ec = fc.getExternalContext();
        String filename = "somename.csv";
    
        ec.responseReset();
        ec.setResponseContentType("text/csv");
        ec.setResponseHeader("Content-Disposition", "attachment; filename=\"" + filename + "\"");
        Writer writer = ec.getResponseOutputWriter();
    
        for (Something something : somethings) { // somethings is your List<Something>
            writer.append(toCsvField(something.getFoo()))
                  .append(',')
                  .append(toCsvField(something.getBar()))
                  .append(',');
                  .append(toCsvField(something.getBaz()))
                  .append('\n');
        }       
    
        fc.responseComplete(); // Important! Otherwise JSF will perform navigation.
    }
    
    public static String toCsvField(Object value) {
        if (value == null) {
            return "";
        }
    
        String field = String.valueOf(value).replace("\"", "\"\"");
    
        if (field.indexOf(',') > -1 || field.indexOf('"') > -1) {
            field = '"' + field + '"';
        }
    
        return field;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using C# and System.Data.SqlClient, is there a way to retrieve a list of parameters
I want to repeat this question using python. Reason is I have access to
How to repeat output of some content in JSF using only standard tags (ui:,
What's the simplest way to create a vector of distinct refs? Using (repeat 5
This is a follow up question to: Dynamically updating a4j:repeat using data from form
I am trying to conditionally build a custom list using <ui:repeat> . On every
I am running a windows service and using a loop and Thread.Sleep to repeat
Is it possible to have transparent background image using CSS3? background: url(../img/bg_paperlines.jpg) repeat-x; Using
Using online interfaces to a version control system is a nice way to have
Using ASP.NET MVC there are situations (such as form submission) that may require a

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.