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 use EJB remote calls from my grails application. For this in
Inside a grails application, I need to upload a file under web-app/js, add a
In my grails application I want to read some values from properties file and
I need to add a JNDI datasource from a legacy database to my Grails
I need to improve the response time for a Grails application, so I need
I have one grails application.In that I have one model class named Book. From
I started a grails application by grails create-app. For modularity, I feel like it
I have developed a grails application that stores a great deal of information. Currently,
I have grails application on heroku. I use MongoSessionManager which allows, to share session
I am developing a Grails-application which uses several databases, others are read-only and 1

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.