I have a blob column in my database table, for which I have to use byte[] in my Java program as a mapping and to use this data I have to convert it to InputStream or OutputStream. But I don't know what happens internally when I do so. Can anyone briefly explain me what's happening when I do this conversion?
|
|
|||||||||
|
|
You create and use byte array I/O streams as follows:
Assuming that you are using a JDBC driver that implements the standard JDBC Blob interface (not all do), you can connect a InputStream or OutputStream to a blob using the getBinaryStream and setBinaryStream methods, and you can also get and set the bytes directly. (In general, you should take appropriate steps to handle any exceptions, and close streams. However, closing |
||||
|
|
|
There is no conversion between InputStream/OutputStream and the bytes they are working with. They are made for binary data, and just read (or write) the bytes one by one as is. A conversion needs to happen when you want to go from byte to char. Then you need to convert using a character set. This happens when you make String or Reader from bytes, which are made for character data. |
|||||
|
|
I'm assuming you mean that 'use' means read, but what i'll explain for the read case can be basically reversed for the write case. so you end up with a byte[]. this could represent any kind of data which may need special types of conversions (character, encrypted, etc). let's pretend you want to write this data as is to a file. firstly you could create a ByteArrayInputStream which is basically a mechanism to supply the bytes to something in sequence. then you could create a FileOutputStream for the file you want to create. there are many types of InputStreams and OutputStreams for different data sources and destinations. lastly you would write the InputStream to the OutputStream. in this case, the array of bytes would be sent in sequence to the FileOutputStream for writing. For this i recommend using IOUtils
and in reverse
if you use the above code snippets you'll need to handle exceptions and i recommend you do the 'closes' in a finally block. |
|||||
|