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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:21:28+00:00 2026-06-13T13:21:28+00:00

I am stuck with an issue where I need to export data to a

  • 0

I am stuck with an issue where I need to export data to a .csv file, but not store the file in file system – instead I need to simply open the file in browser.

I have written the below code to write data to .csv file:

FileWriter myWriter = new FileWriter("output.csv");
myWriter.append(EmployeeCode);
myWriter.append(',');
myWriter.append(Band);
myWriter.append('\n');
response.setHeader("Content-Disposition", "attachment; filename=output.csv"); 
response.setContentType("application/ms-excel"); 
response.setCharacterEncoding("UTF-8");

I am able to open a .csv file but it is empty. My data does not get populated into it.
Please suggest what am I doing wrong.

  • 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-13T13:21:29+00:00Added an answer on June 13, 2026 at 1:21 pm

    FileWriter writes the content in the output.csv file, not on the response output stream. You should do something like:

    OutputStream out = response.getOutputStream();
    

    To get the response output stream.

    And write the content in the out stream, something like:

    response.setContentType("application/ms-excel"); // or you can use text/csv
    response.setHeader("Content-Disposition", "attachment; filename=output.csv"); 
    try {
        // Write the header line
        OutputStream out = response.getOutputStream();
        String header = "EmployeeCode, Band\n";
        out.write(header.getBytes());
        // Write the content
        String line=new String(EmployeeCode+","+Band+"\n");
        out.write(line.toString().getBytes());
        out.flush();
    } catch (Exception e) {
       log.error(e);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am stuck in a strange issue while reading data from serial port in
I'm stuck with sort of a configuration issue I think. I need to protect
Have been stuck with this issue for a few days now, and really need,
Friends i am stuck with a strange issue and i need your suggests to
I have got stuck in some issue where I need to traverse through a
I am using CodeFirst approach and struck with an issue where I need to
I am stuck on a issue. I am trying to set user-environment variables using
I am stuck with this issue for a long time. I searched for this
I am stuck on this issue and cannot seem to find a way around
I am kind of stuck with an issue where I am unable to to

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.