Results 1 to 2 of 2
- 08-01-2007, 03:10 AM #1
Member
- Join Date
- Aug 2007
- Posts
- 1
- Rep Power
- 0
- 08-01-2007, 04:58 AM #2
Senior Member
- Join Date
- Jul 2007
- Posts
- 135
- Rep Power
- 0
Is this actual character data you are reading or binary data?
If it is character data use a FileReader to read a character at a time out of the file.
If it is binary data use a FileInputStream to read a byte at a time.
both have the option to read data into either a char[] or a byte[], respectively. This way you can read chunks of the file at a time.
Similar Threads
-
Reading data form Excel using Jdbc (example)
By Java Tip in forum Java TipReplies: 0Last Post: 02-13-2008, 11:23 AM -
Reading Binary File and Changing data
By janakiram.attuluri in forum Advanced JavaReplies: 1Last Post: 12-21-2007, 10:10 AM -
Reading Data from a file
By ramachandran in forum New To JavaReplies: 2Last Post: 10-24-2007, 07:22 AM -
Reading in data from file line by line
By bluekswing in forum New To JavaReplies: 1Last Post: 10-02-2007, 12:19 AM -
Reading FileInput data
By Eric in forum Advanced JavaReplies: 1Last Post: 07-05-2007, 06:59 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks