2
votes
5answers
104 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 …
0
votes
4answers
79 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
2answers
70 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
3
votes
11answers
187 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 …
-2
votes
4answers
68 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 wr …
0
votes
4answers
195 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
votes
1answer
20 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,t …
3
votes
2answers
113 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?
3
votes
9answers
236 views
Atomic delete for large amounts of files
I am trying to delete 10000+ files at once, atomically e.g. either all need to be deleted at once, or all need to stay in place.
Of course, the obvious answer is to move all the f …
3
votes
4answers
152 views
Are there good examples of good C++ I/O usage.
I am heavily involved in doing I/O in C++ (currently using it for printing headers, tables, some data alignments), and wonder about it proper/great usage in either open source proj …
1
vote
3answers
73 views
java: search & replace in a Stream
How do I do on-the-fly search & replace in a Java Stream (input or output)?
I don't want to load the stream into memory or to a file.
I just see the bytes passing by and I ne …
0
votes
3answers
20 views
Restricting file/folder write to paths other then the specified root
In .NET is there any API that allows me to restrict some IO operations to the specified path?
For example:
Root Path: C:\Test\
Now I want to call a function like this:
IO.Di …
0
votes
6answers
99 views
[python] How to update a xml file?
Hi.
I have a xml file that I would like to update after it has already data.
I thought about open the xml file in "a" (append) mode. The problem is that the new data will start t …
0
votes
0answers
25 views
Example of CPU and I/O burst cycle?
Can somebody give me an example of CPU and I/O burst cycle?
I know the CPU must do its calculation during the burst, but how about the I/O? What actually happens during the I/O t …
3
votes
3answers
110 views
How to create a file one directory up?
How can I create a file in python one directory up, without using the full path?
I would like a way that worked both for windows and linux.
Thanks.
