Tagged Questions
The inputstream tag has no wiki summary.
203
votes
13answers
137k views
In Java, how do I read/convert an InputStream to a String?
If you have java.io.InputStream object, how should you process that object and produce a String?
Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
69
votes
5answers
42k views
Creating a byte array from a stream
What is the preffered method for creating a byte array from an input stream?
Here is my current solution with .NET 3.5.
Is it still a better idea to read and write chunks of the stream?
Stream s;
...
37
votes
8answers
46k views
How to convert an Stream into a byte[] in C#?
Is there a simple way or method to convert an Stream into a byte[] in C#?
36
votes
9answers
47k views
Convert InputStream to byte[] in Java
I want to read an image and convert it to byte[] for my use.
What should I do?
26
votes
6answers
14k views
Is it possible to read from a Java InputStream with a timeout?
Specifically, the problem is to write a method like this:
int maybeRead(InputStream in, long timeout)
where the return value is the same as in.read() if data is available within 'timeout' ...
24
votes
2answers
9k views
Different ways of loading a file as an InputStream
What's the difference between
InputStream is = this.getClass().getClassLoader().getResourceAsStream(fileName)
and
InputStream is = ...
17
votes
4answers
3k views
How do I peek at the first two bytes in an InputStream?
Should be pretty simple: I have an InputStream where I want to peek at (not read) the first two bytes, i.e. I want the "current position" of the InputStream to stil be at 0 after my peeking. What is ...
14
votes
10answers
17k views
C/C++: Capture characters from standard input without waiting for enter to be pressed
I can never remember how I do this because it comes up so infrequently for me. But in C or C++, what is the best way to read a character from standard input without waiting for a newline (press ...
13
votes
5answers
20k views
java inputstream read blocking
According to the java api, the InputStream.read() is described as:
If no byte is available because the
end of the stream has been reached,
the value -1 is returned. This method
blocks until ...
12
votes
4answers
84 views
How do you decide what byte[] size to use for InputStream.read()?
When reading from InputStreams, how do you decide what size to use for the byte[]?
int nRead;
byte[] data = new byte[16384]; // <-- this number is the one I'm wondering about
while ((nRead = ...
11
votes
6answers
2k views
How to check if InputStream is Gzipped?
Is there any way to check if InputStream has been gzipped?
Here's the code:
public static InputStream decompressStream(InputStream input) {
try {
GZIPInputStream gs = new ...
10
votes
1answer
191 views
What's the fastest way to read from System.in in Java?
I am reading bunch of integers separated by space or newlines from the standard in using Scanner(System.in).
Is there any faster way of doing this in Java?
10
votes
2answers
839 views
What is the proper way to code a read-while loop in Scala?
What is the "proper" of writing the standard read-while loop in Scala? By proper I mean written in a Scala-like way as opposed to a Java-like way.
Here is the code I have in Java:
MessageDigest md ...
10
votes
3answers
9k views
Most efficient way to create InputStream from OutputStream
This page: http://ostermiller.org/convert_java_outputstream_inputstream.html
describes how to create an InputStream from OutputStream:
new ByteArrayInputStream(out.toByteArray())
Other ...
9
votes
3answers
4k views
Process.waitFor(), threads, and InputStreams
In pseudocode, here's what I'm doing:
Process proc = runtime.exec(command);
processOutputStreamInThread(proc.getInputStream());
processOutputStreamInThread(proc.getErrorStream());
proc.waitFor()
...
9
votes
4answers
878 views
How do I convert an InputStream to a String in Java?
Suppose I have an InputStream that contains text data, and I want to convert this to a String (for example, so I can write the contents of the stream to a log file).
What is the easiest way to take ...
8
votes
2answers
856 views
Idiomatic way to convert an InputStream to a String in Scala
I have a handy function that I've used in Java for converting an InputStream to a String. Here is a direct translation to Scala:
def inputStreamToString(is: InputStream) = {
val rd: ...
8
votes
5answers
501 views
Closing Java InputStreams
Good afternoon all.
I have some questions about the usage of the close() method when using Java InputStreams. From what I see and read from most developers, you should always explicitly call close() ...
7
votes
3answers
1k views
Java process.getInputStream() has nothing to read, deadlocks child
I am having an issue with some process wrapping, and it's only occurring in Windows XP. This code works perfectly in Windows 7. I'm really stumped as to why the streams are empty in XP. I've also ...
7
votes
2answers
2k views
What does InputStream.available() do in Java?
What does InputStream.available() do in Java? I read the documentation, but I still cannot make it out.
The doc says:
Returns the number of bytes that can be read (or skipped over) from this ...
7
votes
6answers
11k views
Load files bigger than 1M from assets folder
I'm going crazy, I created a file object, so it can be read with ObjectInputStream, and I placed the assets folder.
The method works with a file smaller than 1M, and give error with larger files.
I ...
7
votes
3answers
16k views
Android how to get access to raw resources that i put in res folder?
In J2ME, I've do this like that:
getClass().getResourceAsStream("/raw_resources.dat");
But in android, I always get null on this, why?
7
votes
9answers
10k views
Reading from a ZipInputStream into a ByteArrayOutputStream
I am trying to read a single file from a java.util.zip.ZipInputStream, and copy it into a java.io.ByteArrayOutputStream (so that I can then create a java.io.ByteArrayInputStream and hand that to a 3rd ...
6
votes
2answers
265 views
How to skip invalid characters in stream in Java/Scala?
For example I have following code
Source.fromFile(new File( path), "UTF-8").getLines()
and it throws exception
Exception in thread "main" java.nio.charset.MalformedInputException: Input length = ...
6
votes
3answers
422 views
Do I need to close a ByteArrayInputStream?
Short question,
I saw in some old code where a ByteArrayInputStream was created like:
new BufferedReader(new InputStreamReader(new ByteArrayInputStream(somebytes)));
And then the BufferedReader is ...
6
votes
2answers
629 views
Java - Problem with multiple, concurrent runtime.exec() InputStreams
I have no choice but to retrieve some external data by means of several Runtime.exec() calls to a VBScript. I truly hate this implementation, as I lose my cross-platform flexibility, but I may ...
6
votes
2answers
285 views
Why can php://input be read more than once despite the documentation saying otherwise?
The PHP documentation states that php://input can only be read once.
In my application I need to read it twice, once for authentication purposes and once for actually processing the content, and both ...
6
votes
7answers
370 views
Java resource closing
I'm writing an app that connect to a website and read one line from it. I do it like this:
try{
URLConnection connection = new URL("www.example.com").openConnection();
BufferedReader ...
6
votes
5answers
10k views
How can I get a java.io.InputStream from a java.lang.String?
I have a String that I want to use as an InputStream. In Java 1.0, you could use java.io.StringBufferInputStream, but that has been @Deprecrated (with good reason--you cannot specify the character set ...
6
votes
5answers
12k views
Getting the inputstream from a classpath resource (XML file)
In Java web application, Suppose if I want to get the InputStream of an XML file, which is placed in the CLASSPATH (i.e. inside the sources folder), how do I do it?
5
votes
4answers
181 views
Properly closing Java Process InputStream from getInputStream
I could not find clarification of this in the documentation.
But when we have a Process object and call getInputStream(),
do we get a new stream that we should explicitly close when we are done with ...
5
votes
3answers
123 views
Trouble getting standard output in Java from a C program with getchar()
I'm trying to call a C program from Java and capture the standard output. Here is my code:
try {
ProcessBuilder pb = new ProcessBuilder("helloworld.exe");
pb.redirectErrorStream(true); // ...
5
votes
5answers
2k views
How to clone an InputStream?
I have a InputStream that I pass to a method to do some processing. I will use the same InputStream in other method, but after the first processing, the InputStream appears be closed inside the ...
5
votes
1answer
2k views
Reading InputStream as UTF-8
I'm trying to read from a text/plain file over the internet, line-by-line. The code I have right now is:
URL url = new URL("http://kuehldesign.net/test.txt");
BufferedReader in = new ...
5
votes
5answers
3k views
Scala: InputStream to Array[Byte]
With Scala, what is the best way to read from an InputStream to a bytearray?
I can see that you can convert an InputStream to char array
Source.fromInputStream(is).toArray()
5
votes
7answers
433 views
Java: What sense could it make not to close an InputStream after it ended?
InputStream implements Closeable.
I understand, that closing an InputStream which not ended yet, could make sense to free some underlying resources, and, leaving it open, could make sense to let ...
5
votes
3answers
2k views
Problem reading InputStream from Java Process (Runtime.getRuntime().exec() or ProcessBuilder)
I'm trying to start a process externally with Java and can't read anything from its InputStream - dunno why!
If I'm starting a process with commands like "ls", "ps" or "kill" everything works fine. I ...
5
votes
2answers
368 views
Buffered Background InputStream Implementations
I've written background InputStream (and OutputStream) implementations that wrap other streams, and read ahead on a background thread, primarily allowing for decompression/compression to happen in ...
5
votes
3answers
1k views
Byte[] to InputStream or OutputStream
I have a blob column in my database table, for which I have to use byte[] in my Java program as a mapping and to use this data I have to convert it to InputStream or OutputStream. But I don't know ...
5
votes
5answers
6k views
What is InputStream & Output Stream? Why do we use them and when do we use each of them?
It sounds like a very silly question but can anyone explain me about Input stream and output stream.
I remain confused about when do we need input stream and when we need output stream?
An explanation ...
5
votes
1answer
728 views
In C++, can you manually set the failbit of a stream? How?
I am overloading the input stream operator for use with a Time class and would like to manually set the failbit of the input stream if the input doesn't match my expected time format (hh:mm). Can this ...
5
votes
1answer
2k views
How do you pipe an inputstream to a zipped file as it's read in with Java?
I'm wanting to execute a program and as it runs read in it's output and pipe out the output into a zipped file. The output of the program can be quite large so the idea is to not hold too much in ...
4
votes
5answers
76 views
Java: A FileInputStream that blocks in read() while other thread downloads remainder of file?
I have an FFmpeg-based video-playing app which is able to play content from any arbitrary InputStream.
It is important that the app is able to play a video file which is in the process of being ...
4
votes
3answers
181 views
Copy file to assets folder
After searching 1 hour i do not found any solution to my problem.
I want to move a file from sdcard to assets folder and also overwrite the existing file in assets folder (both file are sqlite ...
4
votes
1answer
61 views
Benefits of using flush() close() in Android streams?
I know the general idea but I'm just not sure if it has an effect since the Android api states following: "Flushes this stream. Implementations of this method should ensure that any buffered data is ...
4
votes
3answers
174 views
How to get JSON data in chunks to report on progress?
I need to download contact data via a REST API, which I get in JSON format. Issue is, it might be many many contacts, so I want to observe the progress (how many contacts have already been downloaded) ...
4
votes
1answer
590 views
php input stream size limitations
I am trying to read a raw input stream from php using php://input. This works for most files, however, files over 4MB are being ignored in the upload. I have set post_max_size and upload_max_size to ...
4
votes
3answers
150 views
How do I take the output of one program and use it as the input of another on C++?
I have a program that takes the counts of experiments as command string argument and outputs the sequence of floating numbers.
Example:
im_7.exe 10
10.41
13.33
8.806
14.95
15.55
13.88
10.13
12.22
...
4
votes
4answers
369 views
How can a Java program use files inside the .jar for read and write?
I need to store data into files inside .jar file and read it again.
I know that I can use Class.getResourceAsStream() method but it returns an InputStream that I can read from. But I look for a way ...
4
votes
2answers
1k views
How to detect illegal UTF-8 byte sequences to replace them in java inputstream?
The file in question is not under my control. Most byte sequences are valid UTF-8, it is not ISO-8859-1 (or an other encoding).
I want to do my best do extract as much information as possible.
The ...