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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:01:03+00:00 2026-05-24T06:01:03+00:00

It is possible to skip data from an InputStream in.skip(in.available()); but if you want

  • 0

It is possible to skip data from an InputStream

in.skip(in.available());

but if you want to do something similar with OutputStream I’ve found

socket.getOutputStream().flush();

But that’s not the same, flush will transmit the buffered data instead of ignoring it.

Is there any possibility of deleting buffered data?

Thanks

EDIT

The situation is a client-server application, when a new command is send (from client)
it (try) to be sure that the answer read will correspond to the last command sent.

Some commands are sent by (human-fired) events, and others are sent by automatic threads.
If a command is on buffer and a new one is send then the answer will be for the first one, causing desynchronization.

Of course a synchronized method plus a flag called “waitingCommand” could be the safer approach but as the communication is not reliable, this approach is slow (depends on timeouts ). That’s why I’ve asked for the skip method.

  • 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-24T06:01:05+00:00Added an answer on May 24, 2026 at 6:01 am

    I’m no sure if it makes sense, but you can try:

    class MyBufferedOutputStream extends java.io.BufferedOutputStream {
    
        public MyBufferedOutputStream(OutputStream out) {
            super(out);
        }
    
        /** throw away everything in a buffer without writing it */
        public synchronized void skip() {
            count = 0; 
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: check whether internet connection is available with C# I just want to
I want to read data records from a non-seekable stream in Ruby. I want
I am trying to insert some data from one table into another but I
Is it possible to skip the whole action method execution and return a specific
In C++ it is possible to skip method parameter identifier if it's unused: void
In paypal, is it possible to skip the Thanks for your order page and
Possible Duplicate: How can I convert a list<> to a multi-dimensional array? I want
Possible Duplicate: How to do the vector of sets in C++? I want to
Possible Duplicate: Can main function call itself in C++? I found this problem very
I am making webpage where data from database are put in a table. Each

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.