Top "Io" questions

In computing, input/output, or I/O, refers to the communication between an information processing system (such as a computer), and the outside world, possibly a human, or another information processing system.

What is the difference between CFQ, Deadline, and NOOP?

I'm recompiling my kernel, and I want to choose an I/O scheduler. What's the difference between these?

linux io linux-kernel kernel recompile
why is bufferedwriter not writing in the file?

Here is the code snippet. read = new FileReader("trainfiles/"+filenames[i]); br = new BufferedReader(read); while((lines = br.readLine())!=null){ …

java io bufferedwriter
The best way to get a string from a Writer in Go

I have a piece of code that returns a web page using the built-in template system. It accepts a ResponseWriter …

io go
How to chain multiple different InputStreams into one InputStream

I'm wondering if there is any ideomatic way to chain multiple InputStreams into one continual InputStream in Java (or Scala). …

java scala io inputstream
CLion C++ can't read/open .txt file in project directory

I have a .txt file in my project directory that I made and populated with data. directory structure looks like: /…

c++ io fstream readfile clion
Haskell "do nothing" IO, or if without else

I want to do something in Haskell that looks like this: main1 = do s <- getLine if s == "foo" …

haskell syntax io
Write a file to a remote location using Java with network path or drive?

I have shared a folder on my server using Windows sharing. On another computer, where I am running my code …

java file io windows-share
Is it possible to read from a url into a System.IO.Stream object?

I am attempting to read from a url into a System.IO.Stream object. I tried to use Dim stream …

.net vb.net io iostream
Reading files with MIPS assembly

I'm trying to write a program that reads in characters from a .dat file that correspond to different colors to …

file io mips mars-simulator
BufferedReader then write to txt file?

Is it possible to use BufferedReader to read from a text file, and then while buffered reader is reading, at …

java file io bufferedreader printwriter