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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T12:54:31+00:00 2026-06-12T12:54:31+00:00

I want to know if there are available bytes to be read in a

  • 0

I want to know if there are available bytes to be read in a Java NIO Socket. In C/C++ it can be done using something like this:

int available(int fd){
  long readable = 0;

    if (ioctl(fd, FIONREAD, &readable) < 0){
      // error
    }

  return (int) readable;
}

It is possible to do the same operation with Java NIO (using SocketChannel, Selector, Socket, etc.)?

  • 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-12T12:54:33+00:00Added an answer on June 12, 2026 at 12:54 pm

    The idea behind NIO is to provide a way to wait for events (e.g. “connection has readable data ready”) from any one of multiple connections at the same time, which sounds like exactly what you are looking for. Take a look at java.nio.channels.Selector. You basically register the “readable” event of all the connections you have with this selector object and then call one of three select methods that will wait for an event on one of your connections:

    1. select() – blocks until an event is available (use if your program has nothing else to do)
    2. select(long timeout) – blocks until an event is available or a timeout happens (use if you want to conserve CPU load and increase network responsiveness if it’s OK if your program slows down a bit)
    3. selectNow() – returns immediately (use if your program needs to keep running)

    Then you use the selectedKeys method to grab a list of all connections that have an event waiting (for example, have data ready to be read). Then just iterate over this list and read from the connections with data only and ignore the other connections that aren’t in the list as they have no data available.

    This will allow you to check without blocking WHETHER data is available (is connection in the list or not), but not HOW MUCH data is available. But if you then do a read on the connection with data available, it will return immediately without blocking and return as much data as is available, if you’ve given it a big enough buffer. You can then choose to buffer this data somewhere and make the amount of data in the buffer available, but something tells me you don’t really need this anyways and just want to go ahead and process the data.

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

Sidebar

Related Questions

i want to know is there anyway that using Java one can capture the
For Remote Desktop Sessions in Linux, I want to know if there something available
I want to know if there is some resource available, some book or something
I know there is this post , but I still want to know more
I want to know if there is any way by which I can paste
Just want to know if there other optional wrapper framework available that generate client
i want to know whether there exists an alternative for pyhook(available for windows not
i want to know there a limitation in size for an iphone to display
I'm making a chat responder for a game and i want know if there
I want to know if there is any kind of report on maven that

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.