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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:41:58+00:00 2026-05-24T00:41:58+00:00

In my Grails application I need to create a file in current system in

  • 0

In my Grails application I need to create a file in current system in which I need to save information fetched from table in database. How to do this from within controller action? I don’t have any idea of it.

I have created file as

File file=new File("file name.txt") 

file.createNewFile();

then I have wrote values of MySQL database table fields in it as:

file<<patient.id
file<<patient.name
.
.
.

it stores data like continuous text but I want to have a .doc file in which data should get stored in table. I found Apache’s POI for creating doc file but I am not getting how it works and how I should use it.

  • 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-24T00:41:58+00:00Added an answer on May 24, 2026 at 12:41 am

    Not sure exactly what you want to store in a file but below is an example of how to easly write a String to a file using Apache-commons-io Which should be included in grails

    import org.apache.commons.io.FileUtils;
    
        class SomeController{
    
            def writeToFile = {
    
               def data = getSomeStringData();
    
               def fileStore = new File("./path/to/files/ControllerOutput_${new Date()}.txt");
               fileStore.createNewFile();
    
    
               FileUtils.writeStringToFile(fileStore, data);
    
               println("your file was created @ {fileStore.absolutePath} and is ${fileStore.length()} bytes");
    
    
            }
    
        }
    

    Does this help? If not, you need to explain exactly what your looking for.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to add a JNDI datasource from a legacy database to my Grails
My application is logically divided into server, which contain my Grails domain objects and
I need to implement a revision system for articles in my grails web app.
I have build a grails application, which on login redirects users to different URLs
Grails vs Rails. Which has better support? And which one is a better choice
I'm using Grails 1.1 beta2. I need to import a large amount of data
I'm learning Grails/GORM and as I've understood it the current best practice is not
Is there a way to chain several filters in a grails application (as in
I have been working on the project where application is using grails 1.2.2.... Now
In my grails application, I have implemented the interface HttpSessionListener to listen for session

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.