Tagged Questions

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 ...
2
votes
3answers
40 views

How to kill a BufferedInputStream .read() call

I'm working on writing a program to download very large files (~2GB) from a server. I've written the program to be able to resume partially finished downloads, In order to simulate a bad internet ...
2
votes
3answers
92 views

Adding characters to beginning and end of InputStream in Java

I have an InputStream which I need to add characters to the beginning and end of, and should end up with another variable of type InputStream. How could I easily do this?
1
vote
1answer
279 views

InputStream won't close, or takes forever to

I'm attempting to download an external mp3 into internal storage. However, the files I'm attempting to download are big, so I'm trying to download them in 1MB chunks so that you can begin playing them ...
1
vote
1answer
501 views

JBOSS hanging on org.apache.jk.common.JkInputStream.receive() - IOException reading the http request inputstream

I have a problem that causes all threads in JBOSS to block while reading the input stream. It does not happen predictably and the system can run for days (or longer) before it starts to suffer. The ...
0
votes
1answer
20 views

How to transfer integer or byte array through socket in java

yes i did look at the tutorials on sun and they didn`t help in my case, only transferred the first command. I`ve got a method public void openConnection() throws IOException{ serverSocket = new ...
0
votes
2answers
50 views

Java download any page - including 404, error-message pages?

I've used URLconnection.connect and BufferedInputStream(connection.getInputStream()) to download pages, but unfortunately it seems it is unable to download any 404 pages or any other error-message ...
0
votes
0answers
85 views

Android BuffedInputStream mark and reset

I'm trying to read image from input stream, from http and resize it at the same time. Like in code exaple below. But, I keep getting IOException: Mark has been invalidated. Not all the time, but with ...
0
votes
1answer
408 views

Why am I getting java.io.IOException: Mark has been invalidated?

I'm trying to download imags from a url and then decode them. The problem is that I don't know how large are they and if I decode them right away, the app crashes with too-big images. I'm doing the ...
0
votes
1answer
556 views

Can I close/reopen InputStream to mimic mark/reset for input streams that do not support mark?

I'm trying to read java.io.InputStream multiple times starting from the top of the stream. Obviously for streams that return true to markSupported() I can try and use mark(availableBytes) and then ...
0
votes
1answer
488 views

Intermittent HttpClient GET issue on android

I have an android application i have been working on that downloads an image from a server, reads it into a bitmap and displays it on an ImageView This works great most of the time, but every so ...
0
votes
4answers
2k views

Reading HttpURLConnection InputStream - manual buffer or BufferedInputStream?

When reading the InputStream of an HttpURLConnection, is there any reason to use one of the following over the other? I've seen both used in examples. Manual Buffer: while ((length = ...