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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:06:10+00:00 2026-06-15T08:06:10+00:00

I´m exporting data from a database table and writing it down in a file.

  • 0

I´m exporting data from a database table and writing it down in a file. Newline characters are correctly retrieved from the database and kept when writing the String (so I´m able to reimport the exported data).

My problem is that in the file the newline characters are implicit (i.e. they appear as line breaks). If the database value is the string “line1 \r\n line2”, the result of directly sending this String to my BufferedWriter + FileOutputStream is
“line1
line2”

Is there any way I can write to the file exactly the “line1 \r\n line2” sequence of characters? (I’ve already tried bw.write(value.toCharArray())

  • 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-15T08:06:11+00:00Added an answer on June 15, 2026 at 8:06 am

    You can replace every escape sequence with a double-backslash:

    public static String escapeChars(String str) {
        char[][] escapes = {
                { '\n', 'n' },
                { '\r', 'r' },
                { '\f', 'f' },
                { '\b', 'b' },
                { '\t', 't' }
        };
        for (char[] escape : escapes) {
            str = str.replaceAll(Character.toString(escape[0]), "\\\\" + escape[1]);
        }
        return str;
    }
    

    Double- and single-apostrophe escaping can be added easily, but I’ve omitted it in this answer.

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

Sidebar

Related Questions

I am writing an exporting function to take data from a database table and
Exporting some data from mysql to a csv file using FasterCSV. I'd like the
I am exporting data table from php page to pdf I got the page
I'm exporting some data, making a file and writing the data to the file...
I'm currently exporting a database table with huge data (100000+ records) into an xml
I need to export data from a table in database A, then import it
I'm exporting some data from a kml file to mysql, there's an xml chunk
I am doing export of data from database to Excel. After exporting when opening
I'm working on a project where we are dealing with importing/exporting data from database
I am exporting data from php page to word,, there i get 'n' number

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.