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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:04:34+00:00 2026-05-12T22:04:34+00:00

FileInputStream reads all bytes of a file and FileOutputStream writes allbytes to a file

  • 0

FileInputStream reads all bytes of a file and FileOutputStream writes allbytes to a file

which class do i use if i want to read all bytes of a file but line by line

so that

if fileA contains two lines

line1
line2

then bytes of line1 and line2 are read seperately

same goes for FileOutputStream

  • 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-12T22:04:34+00:00Added an answer on May 12, 2026 at 10:04 pm

    Fredrik is right about BufferedReader, but I’d disagree about PrintWriter – my problem with PrintWriter is that it swallows exceptions.

    It’s worth understanding why FileInputStream and FileOutputStream don’t have any methods relating to lines though: the *Stream classes are about streams of binary data. There’s no such thing as a “line” in terms of binary data. The *Reader and *Writer classes are about text, where the concept of a line makes a lot more sense… although a general Reader doesn’t have enough smarts to read a line (just a block of characters) so that’s where BufferedReader comes in.

    InputStreamReader and OutputStreamWriter are adapter classes, applying a character encoding to a stream of bytes to convert them into characters, or a stream of characters to turn them into bytes.

    So, you probably want a BufferedReader wrapping an InputStreamReader wrapping a FileInputStream for reading – then call readLine(). For writing, use a BufferedWriter wrapping an OutputStreamWriter wrapping a FileOutputStream – then call write(String) and newLine(). (That will give you the platform default line separator – if you want a specific one, just write it as a string.)

    There’s also the FileReader class which sort of combines FileInputStream and InputStreamReader (and FileWriter does the equivalent) but these always use the platform default encoding, which is almost never what you want. That makes them all but useless IMO.

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

Sidebar

Ask A Question

Stats

  • Questions 261k
  • Answers 262k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Your solution doesn't return garbage if you have a working… May 13, 2026 at 11:43 am
  • Editorial Team
    Editorial Team added an answer Use the encodeURIComponent() function to turn your data in valid… May 13, 2026 at 11:43 am
  • Editorial Team
    Editorial Team added an answer - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger) section Could be the method… May 13, 2026 at 11:43 am

Related Questions

I have a file that contains some amount of plain text at the start
I used to think that each memory location contains 8, 16, 32 or 64
I know, I know, who would want to compress or uncompressed large files in
I'm having a problem trying to serve a zip file in a JSP. The

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.