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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T04:44:20+00:00 2026-06-09T04:44:20+00:00

why cant i read this single character? char c = ‘Y’; while(c == ‘y’

  • 0

why cant i read this single character?

char c = 'Y';
    while(c == 'y' || c == 'Y'){
        //stuff happens..
    }
    c = (char)System.in.read();   <----error

I get a compilation error that says “Unhandled exception type IOException”

  • 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-09T04:44:22+00:00Added an answer on June 9, 2026 at 4:44 am

    You have 2 options to solve this:

    1. Handle the exception using a try-catch statement as shown below:

      char c = 'Y';
      while(c == 'y' || c == 'Y'){
          //stuff happens..
      }
      try {
      
          c = (char)System.in.read();
      
      } catch (IOException e) {
      
          e.printStackTrace();//or however you choose to handle this
      }
      

    Below the package statement in class (if any), add an import statement like:

            import java.io.IOException;
    

    2.
    Add a throws clause after the function indicating that the funcion may throw a checked exception. In this case you may want to handle the exception in the calling function.

    Example: Suppose function sample () calls test()

    public static void test() throws IOException {
    
        char c = 'Y';
        while(c == 'y' || c == 'Y'){
            //stuff happens..
        }
        c = (char)System.in.read();
    
    }
    

    Below the package statement in class (if any), add an import statement like:

            import java.io.IOException;
    

    In case 2 you may handle the exception in sample() else the exception (if occurred) will propagate upwards until it is handled.

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

Sidebar

Related Questions

In the document of Reader.read() it says Reads a single character. This method will
I read this post but I can't get it working: Change Background Color... I
Hi I can't understand this error I want read this XML file: <?xml version=1.0
I have read other related question but i cant really get them to relate
I'm sorry if this is a weird question. I have read plenty of stuff
I just cant get this to work... I have the following routes: routes.IgnoreRoute({resource}.axd/{*pathInfo}); routes.IgnoreRoute(*.html|js|css|gif|jpg|jpeg|png|swf);
I wonder why I can't read the JSON Object like this : { 1:{bulan:Januari,tahun:2012,tagihan:205000,status:Lunas},
I am sure I read about this the other day but I can't seem
I have read several forums but can't find the solution to this. int sIndex
I read through many of solutions of this problem already, but I still can't

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.