当前位置: 技术问答>java相关
java中如何实现读写类似vc中结构数据?
来源: 互联网 发布时间:2015-07-12
本文导语: 我要读bmp图像 象以下的数据该怎么读 //typedef struct tagBITMAPINFOHEADER{ DWORD biSize; LONG biWidth; LONG biHeight; WORD biPlanes; WORD biBitCount; DWORD biCompression; DWORD biSizeImage; LONG...
我要读bmp图像
象以下的数据该怎么读
//typedef struct tagBITMAPINFOHEADER{
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
//} BITMAPINFOHEADER, *PBITMAPINFOHEADER;
象以下的数据该怎么读
//typedef struct tagBITMAPINFOHEADER{
DWORD biSize;
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount;
DWORD biCompression;
DWORD biSizeImage;
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed;
DWORD biClrImportant;
//} BITMAPINFOHEADER, *PBITMAPINFOHEADER;
|
它的这些数据都是顺序存放的,你只要顺序读去内存就可以了,不过要掌握好数据的长短。你可以用DataInputStream来进行方便的读取。