Tagged Questions
The io-stream tag has no wiki summary.
11
votes
1answer
5k views
Open an IO stream from a local file or url
I know there are libs in other languages that can take a string that contains either either a path to a local file or a url and open it as a readable IO stream.
Is there an easy way to do this in ...
1
vote
1answer
5k views
Java - open existing file or create one if doesn't exist using IO streams
I was following instructions from a Java website (http://java.sun.com/docs/books/tutorial/essential/io/file.html#createStream) on creating or writing a file using an IO stream. However, the code it ...
0
votes
1answer
28 views
C2664 error stream.write unsigned char *
ostream &stream;
stream.write(SomeUnsignedCharStar, intSize);
error C2664 cannot convert parameter 1 from const unsigned char * to const char *
Is there an overload write for const unsigned ...
0
votes
2answers
176 views
java: Do I need to close all the streams?
I have a method that reads text from a file; decompression may be required, depending on an input parameter:
public static String readText(File inFile, boolean compressed) {
InputStream in = ...