An abstract mechanism for reading a data stream into a buffer, for improved reading performance

learn more… | top users | synonyms

1
vote
0answers
18 views

save images locally - canvas

The code right down to this saving photos from a HTML page is working. String nameimage, srcfoto; nameimage = vs.getValor("NAMEIMAGE"); ...
0
votes
2answers
28 views

Monitoring BufferedInputStream download progress

I'm trying to download a file using an AsyncTask on Android. I want to display a ProgressDialog which should have a progress bar to show the status of the download. I'm using the onProgressUpdate() ...
0
votes
3answers
47 views

Most efficient way to read characters from a file?

While practising file I/O in Java, I came across an assignment where I has to rewrite a method that looks up what recorddata is associated with a given record ID. Now, the method I'm talking about is ...
0
votes
1answer
10 views

BOS/BIS getting progress

I have an upload with a BufferedInputStream and a BufferedOutputStream and now I want to get a progress in percent of this upload. How to get this?? BufferedInputStream bis = null; ...
0
votes
0answers
25 views

Enhance Performance with URLconnection and InputStream

i want to decrease the time taken for executing this code for performance URL restUrl = new URL(url+country); URLConnection conn = restUrl.openConnection(); InputStream in = conn.getInputStream(); ...
0
votes
2answers
107 views

how to write many time in a file in java?

I posed the same question earlier but i tried all the given answer and no one go with my prog. I created a method that write in a file and the will use this file by an other method. my problem is when ...
0
votes
2answers
53 views

Reading records from buffers

I have a huge file to be read. I have a IO thread which reads data ( 4mb ) from the disk and stores in a circular array of 6 elements ( 4mb each ). I have another thread which reads from the circular ...
1
vote
3answers
82 views

Do action while reading big files java

I'm making a chat program with Java, and I'm doing the communication through TCP and serializable objects. The chat can exchange files, too, but when the files are too big (video files) the interface ...
-1
votes
2answers
97 views

Java BufferedInputStream Progress Bar

I'm having a slight issue getting a JProgressBar to show the status of an HTTP download. The progress bar is working, however it fills up too quickly and eventually overshoots the max value by quite ...
1
vote
2answers
255 views

Replacing a BufferedInputStream with a byte array in Java

The following code reads data from a file using a BufferedInputStream and processes it in chuncks. I would like to modify this code so that instead of the data coming from a file through a stream, I ...
4
votes
4answers
282 views

How can I make a new buffered reader object that starts reading from where another stopped?

I have a buffered reader that reads a large file line-by-line to remove duplicate lines. Instead of loading the whole file in the memory I'd like to do this by using two buffered readers: The first ...
0
votes
1answer
394 views

Why is the performance of BufferedReader so much worse than BufferedInputStream?

I understand that using a BufferedReader (wrapping a FileReader) is going to be significantly slower than using a BufferedInputStream (wrapping a FileInputStream), because the raw bytes have to be ...
1
vote
2answers
154 views

Working around DataInputStream to newer standards in Android/Java

I had a method like this in an Android app reading a raw file: public String inputStreamToString(InputStream isTwo) throws IOException { StringBuffer sBuffer = new StringBuffer(); ...
2
votes
5answers
147 views

Faster way of copying data in Java?

I have been given a task of copying data from a server. I am using BufferedInputStream and output stream to copy the data and I am doing it byte by byte. Even though it is running but It is taking ...
3
votes
4answers
931 views

How to clone an inputstream in java in minimal time

Can someone tell me how to clone an inputstream, taking as little creation time as possible? I need to clone an inputstream multiple times for multiple methods to process the IS. I've tried three ...
0
votes
1answer
456 views

The input stream is not a valid binary format

I'd like to Deserialize my "DataStore" to get a list of Typs. First i want to make theese in XMl with the XMLSerializer but it seems that he dont like Interfaces, Abstract Class and Typs ... but there ...
0
votes
1answer
93 views

Why doesn't it read the line-termination ''\n'

This code is trying to read a file then reverse it to an output file. When it writes it (without reversing) the output is the same. But when it is reversed the output is written ALL on ONE line in the ...
1
vote
2answers
371 views

How to resume reading an InputStream using the FTP protocol

I am learning Java OOP. My program downloads file via FTP. I want to resume downloading when it is started again. Here is my code : URL urlName = new URL(url); URLConnection con = ...
0
votes
1answer
110 views

In wich directory is being stored a file when i use “Activity.openFileOutput(”myFile“, Context.MODE_PRIVATE);” to store it?

i have this code to store a remote sqlite .db file with my android app: public String getRemoteCollection(String url, String dbName){ BufferedInputStream in = null; FileOutputStream fout = ...
1
vote
2answers
209 views

Is BufferedInputStream.available() Reliable in Socket Programming?

Is available() reliable for use in socket programming in Java? I just care that it tells me when there are bytes available for reading so that when I call read methods they don't block. ...
0
votes
2answers
181 views

Why can't my client read the second message sent by the server when using SSL sockets and Java 7?

I have a puzzling problem when using Java 7 and SSL sockets. I've got a client/server bundle. Both send XML data to each other by using a very simple protocol. The first 4 bytes of each message ...
0
votes
2answers
150 views

What is the fastest way to get a HTML Content using java?

I have this, but I was wondering if there is a faster way: URL url=new URL(page); InputStream is = new BufferedInputStream(url.openConnection().getInputStream()); ...
1
vote
1answer
250 views

Why my codes failed to update JTextArea in real time?

Hi I'm new to Java programming. I am trying to execute an external command from Java and then show the command prompt output in JTextArea in real time. That external program will generate 1 line of ...
0
votes
0answers
137 views

BufferedInputStream is not taking large input

I am relatively new in java and I am trying to take a binary matrix as input, where total number of rows & columns will be between 2 & 1000. I am using BufferedInputStream, and for small ...
0
votes
2answers
86 views

BufferedInputStream says it is not available, but works anyway

Can someone explain to me why this works just fine with in.available()>0 commented out, but when I put it back in it breaks? mySocket = new Socket("blahblah", 12345); BufferedInputStream in = new ...
0
votes
1answer
159 views

BufferOutputStream write zero byte when merge the file

I am trying merge n pieces of file become single file. But I got strange behavior on my function. The function are called for x times in n seconds. Let say I have 100 files which I will merge, every ...
0
votes
2answers
168 views

inconsistent BufferedInputStream read(byte[]) behaviour

My understanding of BufferedInputStream.read(byte[]) is that the read operation starts from pos, and reads until either the byte array is full or end of stream occurs. I am calling the readInt method ...
2
votes
2answers
1k views

Sockets: BufferedOutputStream or just OutputStream?

In order to get the fastest transfer speeds over TCP in Java, which is better: Option A: InputStream in = socket.getInputStream(); OutputStream out = socket.getOutputStream(); Option B: ...
0
votes
2answers
361 views

inputstream.read has no response when downloading large image(size > 300K)

Hi guys. I have a problem when downloading large size images.It's very strange, while read bytes from stream always no response. My code is as follows, any suggestion is welcome. public class ...
0
votes
1answer
89 views

unbuffered stream behaving like line buffered

i was reading about streams and found out that we could control streams by using setvbuf() function...it was written tat in line buffered mode stream sends the data to the file when a newline is ...
2
votes
2answers
475 views

Java DataInputStream vs. BufferedInputStream

I'm looking for an efficient solution to receive and process asynchronous messages (of varying size) from a socket connection to a server. It is a good amount of bandwidth coming over (maybe 250 kB/s ...
1
vote
0answers
267 views

Android RandomAccessFile and file system buffer

I know that RandomAccessFile does not use buffering (and unlike in case of FileInputStream, it obviously cannot be combined with BufferedInputStream). I need to read many small chuncks of data from ...
1
vote
3answers
345 views

Java BufferedOutputStream: How many bytes to write

This is more like a matter of conscience than a technological issue :p I'm writing some java code to dowload files from a server...For that, i'm using the BufferedOutputStream method write(), and ...
0
votes
1answer
400 views

Issues with RXTX - Erronous amount of bytes being received

I'm having some difficulties with retrieving data from a microcontroller. I'm transferring data in chunks of exactly 2000 bytes, and have written a thread to handle these 2000 bytes before make a new ...
2
votes
2answers
3k views

BufferedInputStream into byte[] to be send over a Socket to a Database

I have been looking around for an answer to this, but couldn't really find anything on it. Earlier today, I asked how I could make a File into a String through a byte array, and then back again, for ...
0
votes
1answer
76 views

How to drop the buffer of inputstream with buffer?

Consider the InputStream with buffer,for example AudioInputStream (i.e.available() return >=0) The inputstream is reading a changing file (a file which is kept downloading from internet and the ...
4
votes
2answers
219 views

Sending a databse via ftp - Getting a different file

I'm currently using this code to send a database over ftp (Using apache commons) File file = getDatabasePath("database"); FTPClient ftp = new FTPClient(); try { ...
0
votes
2answers
863 views

Performance measure of BufferedReader Vs BufferedInputStream

Recently I have modified my code to While taking input form STDIN, I moved from Scanner to BufferedInputStream. I also read about BufferedReader which takes the input from any InputStreamReader. ...
0
votes
2answers
317 views

Facing difficulty while using BufferedInputStream inplace of Scanner

For reading input from STDIN i always used Scanner object. Recently I read about BufferedInputStream here that BufferedInputStream is fastest way to read input. In Scanner we have various methods (to ...
1
vote
4answers
811 views

Java BufferedInputStream.read() IndexOutOfBounds

i'm want to code a method that reads part from files into byte-arrays. for this i'm using fileinputstream and a buffered inputstream. like this: fis = new FileInputStream(file); bis = new ...
1
vote
4answers
474 views

Write mp3 file to disk while playing in Java

I have an application playing remote MP3 files over HTTP using the JLayer/BasicPlayer libraries. I want to save the played mp3 files to disk without re-downloading them. This is the code using the ...
7
votes
2answers
3k views

Java Being Blocked By Antivirus Software (Specifically AVG)

I have a program that I've been working on that downloads files. Everything works perfectly, unless a user is using AVG. Oddly enough, it seems that in order to fix the issue AVG's "Email Protection" ...
0
votes
1answer
1k views

Parsing text file line by line to array using BufferedInputStream with RTL characters in Java

Guys I need to understand something: the \n comes at the begining of a new line currect? If so, I am trying to parse a file that has RTL characters in it and they are at the begining of a line, so: ...
2
votes
3answers
499 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 ...
0
votes
1answer
392 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
4answers
822 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
303 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 ...
-1
votes
1answer
291 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 ...
2
votes
2answers
555 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 ...
1
vote
1answer
998 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 2