Tagged 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.

learn more… | top users | synonyms (2)

203
votes
13answers
137k views

In Java, how do I 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 ...
81
votes
15answers
55k 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 ...
70
votes
6answers
78k 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 ...
57
votes
12answers
25k 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 ...
57
votes
9answers
44k 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.
51
votes
11answers
22k 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, ...
35
votes
7answers
24k 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 ...
27
votes
8answers
1k 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)) != ...
26
votes
16answers
8k 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 ...
24
votes
3answers
375 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 ...
23
votes
7answers
18k 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, ...
21
votes
7answers
12k 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 ...
21
votes
7answers
765 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 ...
20
votes
6answers
29k 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), ...
20
votes
3answers
6k 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 ...
19
votes
2answers
429 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 ...
19
votes
4answers
2k 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 ...
19
votes
6answers
3k 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 <- ...
19
votes
11answers
9k 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 ...
17
votes
5answers
5k views

Java: Difference between PrintStream and PrintWriter

What is the difference between PrintStream and PrintWriter? They have much methods in common. I always mix up this classes because of that reason. And I think we can use them for exactly the same. But ...
17
votes
7answers
1k views

Fastest way to read every 30th byte of large binary file?

What is the fastest way to read every 30th byte of a large binary file (2-3 GB)? I've read there are performance problems with fseek because of I/O buffers, but I don't want to read 2-3 GB of data ...
16
votes
3answers
528 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. ...
16
votes
1answer
595 views

Reading large file in haskell?

i've been trying to read a large file in haskell. I need to compress it using a custom algorithm for a university project. Everything works fine untill i start to compress big files. I extracted ...
16
votes
4answers
640 views

How to design a “web spider” with state in Haskell?

I am learning Haskell after years of OOP. I am writing a dumb web spider with few functions and state. I am not sure how to do it right in FP world. In OOP world this spider could be designed like ...
16
votes
2answers
744 views

Testing IO actions with Monadic QuickCheck

Can anyone give me a brief example of testing IO actions using Monadic QuickCheck?
16
votes
4answers
4k 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 ...
16
votes
5answers
7k 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) ...
16
votes
9answers
21k 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 ...
15
votes
5answers
883 views

I/O in Haskell is Functional?

I'm just starting to take a look at Haskell (my previous FP experience is in Scheme), and I came across this code: do { putStrLn "ABCDE" ; putStrLn "12345" } To me, this is procedural programming, ...
14
votes
2answers
379 views

How can I make file I/O more transactional?

I'm writing CGI scripts in Haskell. When the user hits ‘submit’, a Haskell program runs on the server, updating (i.e. reading in, processing, overwriting) a status file. Reading then ...
14
votes
2answers
480 views

Java in 2011: threaded sockets VS NIO: what to choose on 64bit OS and latest Java version?

I've read several posts about java.net vs java.nio here on StackOverflow and on some blogs. But I still cannot catch an idea of when should one prefer NIO over threaded sockets. Can you please examine ...
14
votes
9answers
760 views

One thread per client. Doable?

I'm writing a Java server which uses plain sockets to accept connections from clients. I'm using the fairly simple model where each connection has its own thread reading from it in blocking mode. ...
14
votes
4answers
2k views

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

Programmatic solution of course... Man i wish i could choose both the VB and Unmanaged as an answer ;) Thanks for both.
13
votes
2answers
518 views

Haskell Lazy ByteString + read/write progress function

I am learing Haskell Lazy IO. I am looking for an elegant way to copy a large file (8Gb) while printing copy progress to console. Consider the following simple program that copies a file silently. ...
13
votes
4answers
381 views

Can't perform I/O in foldr?

I have a Data.Map structure that maps Strings to Stringss. For whatever reason, I want to print the contents of the map in the format key: value using foldrWithKey, like so: M.foldrWithKey (\k v b ...
13
votes
6answers
680 views

Are the C formatted I/O functions (printf, sprintf, etc) more popular than IOStream, and if so, why? [closed]

I've been looking through a lot of code made by others lately and happened to notice everyone uses "printf" style C functions a lot, but the C++ functions learned in school (cout, specifically) don't ...
13
votes
2answers
2k views

Haskell: can't use “map putStrLn”?

I have a list of strings, and tried this: ls = [ "banana", "mango", "orange" ] main = do map PutStrLn list_of_strings That didn't work, and I can't understand why. ghc print-list.hs ...
13
votes
3answers
369 views

Why would I care about IOExceptions when a file is closed?

I've see this sort of thing in Java code quite often... try { fileStream.close(); } catch (IOException ioe) { /* Ignore. We do not care. */ } Is this reasonable, or cavalier? When would I ...
13
votes
4answers
8k 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?
13
votes
3answers
13k 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 ...
12
votes
4answers
84 views

How do you decide what byte[] size to use for InputStream.read()?

When reading from InputStreams, how do you decide what size to use for the byte[]? int nRead; byte[] data = new byte[16384]; // <-- this number is the one I'm wondering about while ((nRead = ...
12
votes
11answers
290 views

Minimising reading from and writing to disk in Python for a memory-heavy operation

Background I am working on a fairly computationally intensive project for a computational linguistics project, but the problem I have is quite general and hence I expect that a solution would be ...
12
votes
2answers
303 views

How can I combine Handles in Haskell?

I'd like to have something like bash's 2>&1 redirect in Haskell that combines stdout and stderr from a process into a single Handle. It would be nice to do this directly with ...
12
votes
5answers
538 views

Why does Haskell not have an I Monad (for input only, unlike the IO monad)?

Conceptually, it seems that a computation that performs output is very different from one that performs input only. The latter is, in one sense, much purer. I, for one, would like to have a way to ...
12
votes
6answers
646 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 ...
12
votes
1answer
346 views

Can I ensure that Haskell performs atomic IO?

I have two threads in haskell that perform IO. (They print only). Something like the following: thread1 :: IO () thread1 = putStrLn "One" thread2 :: IO () thread2 = putStrLn "Two" I am currently ...
12
votes
5answers
853 views

C program stuck on uninterruptible wait while performing disk I/O on Mac OS X Snow Leopard

One line of background: I'm the developer of Redis, a NoSQL database (http://code.google.com/p/redis). One of the new features I'm implementing is Virtual Memory, because Redis takes all the data in ...
12
votes
2answers
6k views

What is the best epoll/kqueue/select equvalient on Windows?

What is Windows' best I/O event notification facility? By best I mean something that ... doesn't have a limit on number of input file descriptors works on all file descriptors (disk files, ...
12
votes
3answers
7k 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#.
11
votes
2answers
562 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 ...

1 2 3 4 5 45