0
votes
2answers
61 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 outputFi …
0
votes
2answers
34 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 …
3
votes
3answers
49 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 …
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 Fou …
2
votes
6answers
154 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 i …
0
votes
4answers
80 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
32 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
4answers
152 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 …
3
votes
11answers
260 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 runni …
0
votes
4answers
86 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.
0
votes
4answers
206 views
XOR on a very big file
I would like to XOR a very big file (~50 Go).
More precisely, I would like to do so by XORing each block of 32 bytes of a plaintext file (because of lack of memory) with the key 3 …
1
vote
2answers
96 views
differences between ruby file access mode r+ and w+
hi all, when using files in the ruby language, what is the difference between r+ and w+ mode?
and a+?
great thanks.
3
votes
2answers
139 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?
0
votes
1answer
19 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
82 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
