0
votes
2answers
119 views
Haskell IO with Numbers
Can anyone help with this exersise?
Write a program which asks the user
for the base and height of a right
angled triangle, calculates its area
and prints it to the screen. The
interaction …
6
votes
3answers
45 views
PipedInputStream - How to avoid “java.io.IOException: Pipe broken”
I have two threads. One of them writes to PipedOutputStream, another one reads from corresponding PipedInputStream. Background is that one thread is downloading some data from remote server and …
0
votes
1answer
46 views
Serializing BTree to a file
I'm trying to implement a BTree. I'm pretty much done with the tree and works great for a smaller input which means I've implemented the tree in memory. Now I would like to play with large input for …
1
vote
7answers
154 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 …
0
votes
2answers
27 views
Read contents of a file using a relative path in a Web Application
How can I read the contents of a text file in my Web Application, using a relative path/URL?
The files are located in a directory at the root of my application.
I don't want to specify the full path …
1
vote
1answer
79 views
How do I correct this silent failure to write files using Java IO?
I am encountering a strange issue with the commons-io/java-io. Essentially my file creation is failing silently without an exception.
FileUtils.writeLines(file, collectionOfStrings);
I've looked …
0
votes
0answers
27 views
Limit user input through Text I/O (68k Assembly)
I'm writing a program in Assembly (68k)
and I'm using Easy68k.
I am trying to prompt a user to input a string of characters.
However, I must limit the amount of characters accepted.
I was told I …
3
votes
1answer
26 views
Interrupt driven HD44780 library for an Arduino
I have an HD44780 LCD screen, and I've been using the LiquidCrystal Library provided with the Arduino development package. However, it's not reliable. I noticed some problems with it, and instead of …
0
votes
2answers
55 views
C# TCP/IP Client having an IO Exception.
The IO Exception: "Unable to read data from the transport connection: An established connection was aborted by the software in your host machine."
The code has been copied from a tutorial and I'm …
0
votes
2answers
65 views
Java: Why isn’t my file writing working?
I'm trying to write a file from my Java program, but nothing happens. I'm not getting any exceptions or errors, it's just silently failing.
try {
File outputFile = new …
3
votes
3answers
64 views
How do I get the InputStream of decompressed data from an InputStream of GZIPed data?
I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of javax.activation.DataHandler.getInputStream();) from the response.
What I would like to do is, without …
0
votes
2answers
57 views
aio_write on linux with rtkaio is sometimes long
I'm using async io on linux with rtkaio library. In my tests everything works perfectly, but, in my real application i see that aio_write which is supposed to return very fast, is very slow. It can …
2
votes
6answers
169 views
Is File.Exists an expensive operation?
Re: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
Does anyone know if this is a particularly slow or locking operation which could impact server performance in a large …
3
votes
11answers
359 views
Too many open file handles
I'm working on a huge legacy Java application, with a lot of handwritten stuff, which nowadays you'd let a framework handle.
The problem I'm facing right now is that we are running out of file …
2
votes
4answers
235 views
A Haskell function of type: IO String-> String
I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this:
index :: String -> [(String, [Integer])]
index a = [...]
Now I want to give this function a …
