Tagged Questions

15
votes
5answers
9k 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.
13
votes
7answers
341 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 …
11
votes
2answers
2k 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 …
10
votes
3answers
255 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 …
10
votes
8answers
937 views

What is the fastest way to read a large number of small files into memory ?

I need to read ~50 files on every server start and place each text file's representation into memory. Each text file will have its own string (which is the best type to use for the string holder?). …
10
votes
7answers
2k views

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

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, …
9
votes
8answers
4k 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 …
9
votes
14answers
1k views

What’s the best way to open and read a file in Perl?

Edit on 11/26 - Please note - I am not looking for the "right" way to open/read a file, or the way I should open/read a file every single time. I was just interested to find out what way most people …
9
votes
5answers
8k 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 …
9
votes
11answers
2k 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 …
8
votes
8answers
2k 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 …
7
votes
4answers
105 views

C# - Is path a directory?

How can I check in C# if a specific path is a directory?
7
votes
10answers
530 views

Compression to Improve Harddisk Write Performance

On a modern system can local harddisk write speeds be improved by compressing the output stream? This question derives from a case I'm working with where a program serially generates and dumps around …
7
votes
5answers
9k views

In Java how do a read an input stream in to a string?

If you have an java.io.InputStream object how should you process that object and produce a string.
7
votes
3answers
614 views

Java idiom for “piping”

Is there a more concise/standard idiom (e.g., a JDK method) for "piping" an input to an output in Java than the following? public void pipe(Reader in, Writer out) { CharBuffer buf = …

1 2 3 4 5 20 next
15 30 50 per page