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.

learn more… | top users | synonyms (2)

685
votes
22answers
376k views

Read/convert an InputStream to a String

If you have java.io.InputStream object, how should you process that object and produce a String? Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
242
votes
16answers
178k views

How to create a Java String from the contents of a file

I've been using this idiom for some time now. And it seems to be the most wide-spread, at least in the sites I've visited. Does anyone have a better/different way to read a file into a string in ...
166
votes
5answers
160k views

Get an OutputStream into a String

What's the best way to pipe the output from an java.io.OutputStream to a String in Java? Say I have the method: writeToStream(Object o, OutputStream out) Which writes certain data from the ...
138
votes
15answers
51k views

Non-blocking read on a subprocess.PIPE in python

I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline ...
109
votes
8answers
102k views

How do I check if a file exists? (Java on Windows)

How can I check whether a file exists, before openinging it for reading in Java? (equivalent of Perl's -e $filename). The only similar question on SO dealt with writing the file and was thus ...
105
votes
8answers
72k views

How to check For File Lock in C#?

Is there any way to check whether a file is locked without using a try catch block? Right now, the only way I know of is to just open the file and catch any System.IO.IOException.
105
votes
16answers
49k views

Cannot delete directory with Directory.Delete(path, true)

I'm using .NET 3.5, trying to recursively delete a directory using: Directory.Delete(myPath, true); My understanding is that this should throw if files are in use or there is a permissions problem, ...
97
votes
10answers
10k views

Writing a binary file in C++ very fast

I'm trying to write huge amounts of data onto my SSD(solid state drive). And by huge amounts I mean 80GB. I browsed the web for solutions, but the best I came up with was this: #include ...
72
votes
7answers
54k views

How to prevent SIGPIPEs (or handle them properly)

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no ...
64
votes
6answers
51k views

How to append text to an existing file in Java

I need to append text repeatedly to an existing file in Java. How do I do that?
62
votes
8answers
51k views

Easy way to write contents of a Java InputStream to an OutputStream

I was surprised to find today that I couldn't track down any simple way to write the contents of an input stream to an output stream in Java. Obviously, the byte buffer code isn't difficult to write, ...
61
votes
7answers
79k views

Unicode (utf8) reading and writing to files in python

I'm having some brain failure in understanding reading and writing text to a file (Python 2.4). # the string, which has an a-acute in it. ss = u'Capit\xe1n' ss8 = ss.encode('utf8') repr(ss), ...
48
votes
5answers
18k views

Java: Difference between PrintStream and PrintWriter

What is the difference between PrintStream and PrintWriter? They have many methods in common due to which I often mix these two classes up. Moreover, I think we can use them for exactly the same ...
44
votes
4answers
11k views

In Clojure 1.3, How to read and write a file

I'd like to know the "recommended" way of reading and writing a file in clojure 1.3 . How to read the whole file How to read a file line by line How to write a new file How to add a line to an ...
44
votes
17answers
16k views

How to add a Timeout to Console.ReadLine()?

I have a console app in which I want to give the user x seconds to respond to the prompt. If no input is made after a certain period of time, program logic should continue. We assume a timeout means ...
41
votes
5answers
2k views

What's so bad about Lazy I/O?

I've generally heard that production code should avoid using Lazy I/O. My question is, why? Is it ever OK to use Lazy I/O outside of just toying around? And what makes the alternatives (e.g. ...
38
votes
7answers
35k views

Parsing CSV files in C#

Is there a default/official/recommended way to parse CSV files in C#? I don't want to roll my own parser. Also, I've seen instances of people using ODBC/OLE DB to read CSV via the Text driver, and a ...
35
votes
6answers
57k views

How to read a large text file line by line in java?

I need to read a large text file of around 5-6 GB line by line in java. Please advice.
34
votes
15answers
23k views

How to quickly check if folder is empty (.NET)?

I have to check, if directory on disk is empty. It means, that it does not contain any folders/files. I know, that there is a simple method. We get array of FileSystemInfo's and check if count of ...
34
votes
3answers
38k views

How to find out if a file exists in C# / .NET?

I would like to test a string containing a path to a file for existence of that file (something like the -e test in Perl or the os.path.exists() in Python) in C#.
34
votes
8answers
2k views

What is the motivation for Scala assignment evaluating to Unit rather than the value assigned?

What is the motivation for Scala assignment evaluating to Unit rather than the value assigned? A common pattern in I/O programming is to do things like this: while ((bytesRead = in.read(buffer)) != ...
33
votes
4answers
21k views

Do I need to close() both FileReader and BufferedReader?

I'm reading a local file using a BufferedReader wrapped around a FileReader: BufferedReader reader = new BufferedReader(new FileReader(fileName)); // read the file // (error handling snipped) ...
32
votes
7answers
59k views

Read all files in a folder

I want to read all the files in a folder through Java. Can anyone help me?
32
votes
4answers
33k views

an htop-like tool to display disk activity in linux [closed]

I am looking for a linux command-line tool that would report the disk IO activity. Something similar to htop would be really cool.Has someone heard of something like that? Thanks! EDIT: for the vote ...
30
votes
4answers
2k views

A simple example showing that IO doesn't satisfy the monad laws?

I've seen mentioned that IO doesn't satisfy the monad laws, but I didn't find a simple example showing that. Anybody knows an example? Thanks. Edit: As ertes and n.m. pointed out, using seq is a bit ...
30
votes
4answers
31k views

console.writeline and System.out.println

What exactly is the technical difference between console.writeline and System.out.println? I know that system.out.println writes to standard output but is this not the same thing as the console? ...
28
votes
4answers
15k views

What Process is using all of my disk IO

If I use "top" I can see what CPU is busy and what process is using all of my CPU. If I use "iostat -x" I can see what drive is busy. But how do I see what process is using all of the drive's ...
27
votes
10answers
20k views

How do you determine the size of a file in C?

How can I figure out the size of a file, in bytes? #include <stdio.h> unsigned int fsize(char* file){ //what goes here? }
27
votes
6answers
6k views

Haskell IO and closing files

When I open a file for reading in Haskell, I've found that I can't use the contents of the file after closing it. For example, this program will print the contents of a file: main = do inFile <- ...
27
votes
3answers
1k views

new File(“”) vs. new File(“.”): Feature or Bug?

new File("") and new File(".") yield the same canonical path, yet the former object is unsubable. Consider below code, and how both objects return the same canonical path. The documentation states the ...
26
votes
4answers
19k views

Java: Quickly read the last line of a text file?

What's the quickest and most efficient way of reading the last line of text from a [very, very large] file in Java?
25
votes
7answers
1k views

Should an object write itself out to a file, or should another object act on it to perform I/O?

NOTE: Sorry for the long question! I'm trying to understand some key areas behind object orientation and I couldn't decide one way or another about my particular question. Let's say I have an ...
24
votes
5answers
10k views

Why doesn't Ruby have a real StringBuffer or StringIO?

I recently read a nice post on using StringIO in Ruby. What the author doesn't mention, though, is that StringIO is just an "I." There's no "O." You can't do this, for example: s = StringIO.new s ...
24
votes
11answers
13k views

Creating tempory folders

I am working on a program that needs to create a multiple temporary folders for the application. These will not be seen by the user. The app is written in VB.net. I can think of a few ways to do it ...
24
votes
3answers
9k views

Starting a process with inherited stdin/stdout/stderr in Java 6

If I start a process via Java's ProcessBuilder class, I have full access to that process's standard in, standard out, and standard error streams as Java InputStreams and OutputStreams. However, I ...
23
votes
4answers
3k views

Introduction or simple examples for iteratee?

I find Oleg's docs on Iteratee somewhat difficult to get into. Especially since some of the functions in his posts to Haskell-Cafe aren't in the iteratee library (like enum_file). Is there a good ...
21
votes
2answers
5k views

What is the difference between Directory.EnumerateFiles vs Directory.GetFiles?

What is the difference between Directory.EnumerateFiles vs GetFiles? Obviously one returns an array and the other return Enumerable. Anything else?
21
votes
5answers
648 views

Remove first line from a file [duplicate]

Possible Duplicate: Removing the first line of a text file in C# What would be the fastest and smartest way to remove the first line from a huge (think 2-3 GB) file? I think, that you ...
21
votes
2answers
3k views

how to use the InputSupplier or OutputSupplier api of Guava?

I am new to the guava library, and I am quite confused with the InputSupplier and OutputSupplier. According to the javadoc, they are just factories for InputStream and OutputStream respectively. ...
21
votes
2answers
698 views

When do I use ByteString and when do I not?

I've been making rather poor attempts at the PRIME1 problem on SPOJ. I discovered using that using ByteString really helped performance for reading in the problem text. However, using ByteString to ...
21
votes
2answers
2k views

Testing IO actions with Monadic QuickCheck

Can anyone give me a brief example of testing IO actions using Monadic QuickCheck?
21
votes
9answers
30k views

Read binary file into a struct C#

I'm trying to read binary data using C#. I have all information about the layout of the data in the files I want to read. I'm able to read the data "chunk by chunk", i.e. getting the first 40 bytes of ...
20
votes
7answers
1k views

In what sense is the IO Monad pure?

I've had the IO monad described to me as a State monad where the state is "the real world". The proponents of this approach to IO argue that this makes IO operations pure, as in referentially ...
20
votes
3answers
3k views

How do you place a file in recycle bin instead of delete?

Programmatic solution of course...
20
votes
3answers
21k views

Binary buffer in Python

In Python you can use StringIO for a file-like buffer for character data. Memory-mapped file basically does similar thing for binary data, but it requires a file that is used as the basis. Does Python ...
20
votes
2answers
1k views

Why can Haskell exceptions only be caught inside the IO monad?

Can anybody explain why exceptions may be thrown outside the IO monad, but may only be caught inside it?
20
votes
4answers
24k views

Most efficient way to create InputStream from OutputStream

This page: http://ostermiller.org/convert_java_outputstream_inputstream.html describes how to create an InputStream from OutputStream: new ByteArrayInputStream(out.toByteArray()) Other ...
19
votes
4answers
20k views

Creating a directory in /sdcard fails

I have been trying to create a directory in /sdcard programmatically, but it's not working. The code below always outputs directory not created. boolean success = (new File("/sdcard/map")).mkdir(); ...
19
votes
4answers
9k views

How to print integer literals in binary or hex in haskell?

How to print integer literals in binary or hex in haskell? printBinary 5 => "0101" printHex 5 => "05" Which libraries/functions allow this? I came across the Numeric module and its ...
19
votes
2answers
622 views

Why is there no IO transformer in Haskell?

Every other monad comes with a transformer version, and from what I know the idea of a transformer is a generic extension of monads. Following how the other transformers are build, IOT would be ...

1 2 3 4 5 97