I have a file in Java
FileInputStream in = null;
try{
in = new FileInputStream("C:\\pic.bmp");
}catch{}
I want to convert pic.bmp to an array of hex values so I can edit and save it as a modified version.
Is there a java class to do this?
|
You're in luck. I had to do this a couple months ago. Here's a dumbed-down version that takes two parameters from the command line. Both comand line parameters are filenames...the first is the input file and the second is the output file. The input file is read in binary and the output file is written as ASCII hex. Hopefully you can just adapt this to your needs.
|
|||||||||||||
|
|
Java has an extensive image reading/writing and editing library. Look at the If you want a generic answer, for any type of binary data (not just images), then I guess you would have to read the contents of the file into a byte array. Something like this:
|
|||||||
|
|
If you want to fiddle with the bytes yourself, get a FileChannel from the FileInputStream, and then allocate a ByteBuffer and then read all the content into it. ByteBuffer also has methods to deal with larger chunks of bytes, in the two different byte orders. |
|||
|
|
|
If you type "java hexidecimal encoding" into a Google search, the first result is http://commons.apache.org/codec/api-release/org/apache/commons/codec/binary/Hex.html which is what you should use to answer the "I want to convert pic.bmp to an array of hex values" part of your question. I don't see how it helps you with "so I can edit and save it as a modified version" though. You should probably use a hexidecimal editor for that. eg. ghex2 |
|||
|
|
hexdump,hexeditor simply:%!xxdin Vim? – Josef Aug 22 '09 at 7:28