Tagged Questions
The bufferedinputstream tag has no wiki summary.
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 ...
7
votes
2answers
1k views
Should I buffer the InputStream or the InputStreamReader?
What are the differences (if any) between the following two buffering approaches?
Reader r1 = new BufferedReader(new InputStreamReader(in, "UTF-8"), bufferSize);
Reader r2 = new InputStreamReader(new ...
5
votes
4answers
539 views
Usage of BufferedInputStream
Let me preface this post with a single caution. I am a total beginner when it comes to Java. I have been programming PHP on and off for a while, but I was ready to make a desktop application, so I ...
5
votes
3answers
2k views
What are the default buffer size for java.io.BufferedInputStream on old and exotic JVMs?
I've been doing some research for a blog post regarding java.io.BufferedInputStream and buffers. Apparently, over the years, the default has grown from a measly 512 bytes to 8192 bytes as of ...
4
votes
1answer
141 views
BufferedStream chaining Scala (or Java)
Assuming that I have to write to a binary file. I can use the following code
val fos = new FileOutputStream("fileName")
and then use
fos.write(bytes)
Is it always a good idea to chain it with a ...
3
votes
2answers
523 views
Seeking out the optimum size for BufferedInputStream in Java
I was profiling my code that was loading a binary file. The load time was something around 15 seconds.
The majority of my load time was coming from the methods that were loading binary data.
I had ...
3
votes
4answers
2k views
How java.io.Buffer* stream differs from normal streams?
How buffered streams are working on the background and how it actually differs and what is the real advantage of using the same?
Another Query,..
Since DataInputSytream is also Byte based, but it is ...
3
votes
12answers
14k views
Java BufferedReader back to the top of a text file?
I currently have 2 BufferedReaders initialize on the same text file. When I'm done reading the reading the text file with the first BufferedReader, I use the second one to make another pass thru the ...
2
votes
3answers
42 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
2answers
121 views
BufferedInputStream available() eating CPU
I'm reading messages from a socket (trough a TCP protocol), but I note that the CPU spend a lot of time to call the method available() of my BufferedInputStream. This is my code:
@Override
...
2
votes
1answer
63 views
BufferedInputStream not working with random seeks in file
The write procedure to my file was as follows (in the mode which I call non-clustered)
Write an object to the current position of the file. Note the position of write in another file (called ...
2
votes
2answers
185 views
BufferedInputStream and Blocking
I am using a BufferedInputStream to read from a socket. The BufferedInputStream reads as follows:
socketInput.read(replyBuffer, 0, 7);
It is instantiated by
socketInput = new ...
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?
2
votes
2answers
2k views
Java BufferedReader arabic text file problem
Problem: Arabic words in my text files read by java show as series of question marks : ??????
Here is the code:
File[] fileList = mainFolder.listFiles();
BufferedReader bufferReader ...
2
votes
3answers
1k views
Java - Using DataInputStream with Sockets, buffered or not?
I'm writing a simple client/server application and I found that using DataInputStream to read data was very convenient because it allows you to chose what to read (without having to convert it ...
2
votes
5answers
2k views
Buffer a large file; BufferedInputStream limited to 2gb; Arrays limited to 2^31 bytes
I am sequentially processing a large file and I'd like to keep a large chunk of it in memory, 16gb ram available on a 64 bit system.
A quick and dirty way is to do this, is simply wrap the input ...
1
vote
1answer
104 views
How to handle empty space in url when downloading image from web?
I'm working on a project where the url sometimes can have empty spaces in it (not always) example: www.google.com/ example/test.jpg and sometimes www.google.com/example/test.jpg.
My code:
try {
...
1
vote
2answers
149 views
Convert a BufferedInputStream to a File
I am loading a image from the web to the local android phone. The code that I have for writing to a file is as follows
BufferedInputStream bisMBImage=null;
InputStream isImage = null;
...
1
vote
1answer
81 views
Java Downloading Flood Prevention
currently I have a java downloader that downloads a .zip file and uncompresses it, however the host has an 8mb download speed limit. So due to bandwidth issues if more then 10 people are concurrently ...
1
vote
1answer
280 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
2answers
560 views
Java - Reading multiple images from a single zip file and eventually turning them into BufferedImage objects. Good idea?
I'm working on a game, and I need to load multiple image files (png, gif, etc.) that I'll eventually want to convert into BufferedImage objects. In my setup, I'd like to load all of these images from ...
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 ...
1
vote
3answers
3k views
Get FileNotFoundException when initialising FileInputStream with File object
I am trying to initialise a FileInputStream object using a File object. I am getting a FileNotFound error on the line
fis = new FileInputStream(file);
This is strange since I have opened this file ...
0
votes
0answers
12 views
Getting Java.io.IOException BufferedInputStream is closed because of InMobi ads
I am showing InMobi ads in my application and parsing some contents from html page from a url.
The application works good as long as I don't touch any of the ads, but once I have touched the ad none ...
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
1answer
42 views
Getting java.lang.outOfMemoryError when Storing Large Files to a MySQL database using Java's BufferedInputStream
Im currently experimenting on storing large files on a MySQL 5.5 database using java. My main class is called FileDatabaseTest. It has the following method:
import java.sql.*;
import java.io.*;
...
...
0
votes
2answers
53 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
25 views
Optimization of CMOD-ODWEK code for bulk retrieval
I have written a code to perform bulk retrieval operation which will retrieve the .afp files and .res files separately. The retrieved .afp files and .res files are then concatenated using plain java ...
0
votes
2answers
49 views
Downloading with BufferInputStream not working properly
The following code doesn't work to download a file (btw clen is file's length):
int pos = 0, total_pos = 0;
byte[] buffer = new byte[BUFFER_SIZE];
while (pos != -1) {
...
0
votes
3answers
79 views
Fell into infinite loop while receiving file using datainputstream and bufferedinputstream
I am trying to build a server program that receives file from client using DataInputStream and BufferedInputStream.
Here's my code and it falls into infinite loop, I think it's because of not using ...
0
votes
3answers
214 views
android convert bitmap to bufferedinputstream
Newb question;
I've got a bitmap in memory;
Private Bitmap MyPicture;
Then later, I fill that MyPicture from imager from the camera. I need to upload that photo using the FTP client from the ...
0
votes
1answer
65 views
How do I read from two different places in a file using Buffered IO in Java
I'm reading numbers from a file in order to perform a merge sort. The merge sort must be performed as an external sort as it is a large list of numbers and there is very little main memory available. ...
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
2answers
106 views
How do I download Bitmaps and save to the SD card without running out of memory?
I'm looking for the best way to download an array of Bitmaps, modify them a bit and then save to the SD card.
I've heard that ByteArrayOutputStream is a bad idea to use because it loads the image ...
0
votes
2answers
358 views
Android BufferedInputStream HTTP POST/GET
I Use BufferedInputStream For HTTP POST/GET
But I Get Some Error the Below
java.io.FileNotFoundException: http://XX.XX.XX.XX/WebWS/data.aspx
Transport endpoint is not connected
Why Get This ...
0
votes
1answer
409 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
142 views
Faster Loading of Bitmaps
As per this link below:
http://java.sun.com/developer/technicalArticles/Programming/PerfTuning/
You can speed up loading of bitmaps (or any files) if you do the buffering yourself (i.e., instead of ...
0
votes
1answer
564 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
2answers
235 views
Can calling available() for a BufferedInputStream lead me astray in this case?
I am reading in arbitrary size file in blocks of 1021 bytes, with a block size of <= 1021 bytes for the final block of the file. At the moment, I am doing this using a BufferedInputStream which is ...
0
votes
1answer
422 views
Problem populating GridView from assets
I am trying to populate Android GridView with inflated view, view has ImageView and TextView which is populate from ArrayList of data.
Fverything is fine but, my first 7 items are repeating, as I ...
0
votes
4answers
157 views
InputStreamReader or Console for Java I/O
To get user input in Java which is the better method?
reader = new BufferedReader(new InputStreamReader(System.in));
or
by use of Console--> Console c = System.console();
what is the difference ...
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
2answers
75 views
bufferedinputstream help
I saw the following code somewhere and I'm confused by the (ry-'0') part. what does that do? bis is a buffered input stream and the input is a line of multiple integers that are each separated by a ...
0
votes
1answer
25 views
Any ideas on how to send a filename attributed with a file when using BufferedOuput/Input Stream?
I am sending a few jpegs (and sometimes zip) files. I was wondering if anyone knew of a way to send the filename (or a custom filename) with the file, rather than definin
0
votes
3answers
110 views
Many nested BufferedInputStream's - what's the impact?
There's a common pattern, when each layer of application, dealing with data from a stream tends to wrap it into a BufferedInputStream, so that at a whole, there's a lot of buffers, filled from ...
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 = ...
0
votes
1answer
469 views
how to tune BufferedInputStream read()?
I am reading a BLOB column from a Oracle database, then writing it to a file as follows:
public static int execute(String filename, BLOB blob)
{
int success = 1;
try
{
File ...
0
votes
1answer
352 views
How do i input a string from a buffered reader?
Im used too using Scanner mainly and want too try using a buffered reader:
heres what i have so far
import java.util.*;
import java.io.*;
public class IceCreamCone
{
// variables
String flavour;
int ...
0
votes
4answers
1k views
Java BufferedReader for zero-terminated strings
I need to read zero-terminated strings from InputStream in Java.
Is there similar to BufferedReader.readLine() method for reading zero-termianted strings?
-1
votes
1answer
47 views
Write to BufferedReader from another class
I need a method to write to a BufferedReader input from another class.
In class A I use BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); and str = stdin.readLine(); to get ...