Questions tagged [buffered]

96 questions
-1
votes
1 answer

How to overlap two images?

I try to make one overlapped .png image from two another .png images which I read and buffered, so what is the easiest way to get overlapped image of both ones?
Kyoko
  • 1
  • 1
-1
votes
1 answer

BufferedReader/Writer not working in Java

I'm trying to make two basic functions which will allow me to call them from other classes in order to return a HashMap from the 'getAllData()' and to write to the file in 'writeToFile()', without any luck. I've been tampering with it for a while…
Jack Evans
  • 13
  • 5
-2
votes
1 answer

Golang buffered channel: Ignore/suppress sending repeated values

In golang from one go routine I'm posting message to a buffered channel. But my reader go routine may be little slow in processing, and any read from the channel may not happen faster. So to stop the channel buffer getting filled up I dont want the…
Arjun
  • 3
  • 2
-2
votes
1 answer

Trying to input a file in java using a buffered-reader. Getting a FileNotFoundError

This is the error I experience when trying to parse a incoming file: Error in Parsing file. java.io.FileNotFoundException: input.txt (The system cannot find the file specified) at java.io.FileInputStream.open0(Native Method) …
Ed Lewis
  • 1
  • 1
-2
votes
1 answer

I want PHP to buffer my MySQL results client-side AND I want to begin using the results immediately

Do MySQL unbuffered queries really use no PHP buffering at all? And do buffered queries really buffer the whole result set before PHP has access to the data? From what I've read about MySQL buffered queries, this isn't what I want because I want to…
PHPguru
  • 1
  • 1
-3
votes
1 answer

Buffered Read line on reads the first line

I am writing a program that decrypts a text file that has been encrypted. My buffered reader only seems to read the first line of the text file only? This is shown by my decryption function() only printing out the first line only correctly…
1 2 3 4 5 6
7