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 ...
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
533 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
521 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
39 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
120 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
62 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
183 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
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
2answers
553 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
1answer
19 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
47 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
78 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
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
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
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
4answers
156 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
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
1answer
468 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 ...