I have a problem with binary type. I have binary file with data. Every element is split by "_". I am using
DataInputStream in = new DataInputStream(new FileInputStream("C:/Data/"+names)); , where names is the name of my binary file. How I can read this file and saving elements in array? This is possible?
|
|
|||
| show 3 more comments |
|
When writing to a binary file, there is no need to split each items in the matrix with '_'. The program knows how many bytes allocated for each item. The following code write 2 doubles without '_' in between. After that, it reads them back from the file and output the data.
The program outputs:
But if you didn't write the file and there is '_' between items, you can use Finally, using
|
|||
|
|
|
It depends on how the data was written down into that file. If it was written using |
|||
|
|
|
You can use |
|||
|
|
'_'is0x5f– ratchet freak Nov 19 '11 at 12:37