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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:30:16+00:00 2026-06-02T00:30:16+00:00

What is the difference between taking input from Scanner and BufferedReader ? Here is

  • 0

What is the difference between taking input from Scanner and BufferedReader ?

Here is a BufferedReader example…

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter characters, 'q' to quit.");

// read characters
do {
    c = (char) br.read();
    System.out.println(c);
} while(c != 'q');

And here is a Scanner example…

Scanner scan = new Scanner(System.in);
char mrArray = new char[10];
// read characters
for (int i = 0; i < myArray.length; i++) {
    String temp = myScanner.next();
    myArray[i] = temp.charAt(0);
}

Is there any difference between the two cases? Are any of these classes likely to be changed in the future? Should I use BufferedStream in preference to Scanner?

  • 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-02T00:30:18+00:00Added an answer on June 2, 2026 at 12:30 am

    A BufferedReader is a simple class meant to efficiently read from
    the underling stream. Generally, each read request made of a Reader
    like a FileReader causes a corresponding read request to be made to
    underlying stream. Each invocation of read() or readLine() could cause
    bytes to be read from the file, converted into characters, and then
    returned, which can be very inefficient. Efficiency is improved
    appreciably if a Reader is warped in a BufferedReader.
    BufferedReader is synchronized, so read operations on a BufferedReader
    can safely be done from multiple threads.

    A scanner on the other hand has a lot more cheese built into it; it
    can do all that a BufferedReader can do and at the same level of
    efficiency as well. However, in addition a Scanner can parse the
    underlying stream for primitive types and strings using regular
    expressions. It can also tokenize the underlying stream with the
    delimiter of your choice. It can also do forward scanning of the
    underlying stream disregarding the delimiter! A scanner however is
    not thread safe, it has to be externally synchronized.

    Source : Scanner vs buffer reader

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

Sidebar

Related Questions

I had made custom example by taking reference from here Example is working fine
What is the difference between " new " and " malloc " and "
In Java I run: System.out.println(Math.log(249.0/251.0)); Output: -0.008000042667076265 In C# I run: <- fixed Math.Log
The difference between Chr and Char when used in converting types is that one
What is main difference between INSERT INTO table VALUES .. and INSERT INTO table
What is difference between in the following statements String name = Tiger; final String
What is the difference between a generative and a discriminative algorithm?
is there a difference between a struct in c++ and a struct in c#?
What is the difference between a template class and a class template?
What the difference between jQuery's functions val() and text() ? Where would you use

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.