0
votes
2answers
43 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
63 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 …
0
votes
2answers
44 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 …
3
votes
3answers
57 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
5answers
98 views
How can i Rename File???
Hiii.... All....
My purpose is to rename one File... what i m Doing is.... i m Searching A perticular String in a text File... among So many files and if that perticular text Found.. then i waana …
0
votes
1answer
24 views
File I/O In DrScheme
(read) takes in a string from stdin, parses it as an s-expression, and returns that expression. How do I do the exact same thing, except taking input from a file?
0
votes
2answers
38 views
Flush stdout in DrScheme?
I can do it in Java, Python, Haskell... how do you do it in DrScheme? A customary google search didn't yield the answer.
2
votes
6answers
157 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 …
0
votes
4answers
84 views
java - effective files copying
hi. i would like to know which is the best way to copy large number of files.
0
votes
2answers
89 views
java read file from network device
can someone help me to find a tutorial or sample java code for
reading file from a any machine which is same network
-1
votes
1answer
26 views
System.IO exception? [closed]
Possible Duplicate:
System.IO exception?
hi,
In winforms insight picturebox control showing one image, the same time i want access that image property of like "summary,title,author using …
-2
votes
4answers
69 views
System.IO exception?
I have Winforms insight have one picture box. When I double click, my logic writes (using stream class) a picture and then stores one in the system folder. When I am trying to write, I get an error …
0
votes
4answers
92 views
PDf to String in Java
What is the easiest way to get the text (words) or a PDF doc as a one long String or array of Strings.
I have tried pdfbox but that is not working for me.
2
votes
4answers
191 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 …
3
votes
11answers
311 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 …
