资源简介
BinCompiler
代码片段和文件信息
/**************************************************************************************
* Reads a file from the BIN file and return data as a byte buffer
**************************************************************************************/
public byte[] readFile(String binfile int pos)
{
byte buffer[];
int len;
try {
InputStream is = Class.getClass().getResourceAsStream(“/“ + binfile);
is.skip(pos);
len = (is.read() & 0xFF) << 24;
len |= (is.read() 0xFF) << 16;
len |= (is.read() & 0xFF) << 8;
len |= (is.read() & 0xFF);
buffer = new byte[len];
is.read(buffer 0 buffer.length);
is.close();
is = null;
System.gc();
} catch (Exception e) {
buffer = null;
e.printStackTrace();
System.gc();
return null;
}
return buffer;
}
/**************************************************************************************
* Reads a file from the BIN file and return data as an Image
**************************************************************************************/
public Image readImage(String binfile long pos)
{
byte buffer[];
long len;
try {
InputStream is = Class.getClass().getResourceAsStream(“/“ + binfile);
is.skip(pos);
len = (is.read() & 0xFF) << 24;
len |= (is.read() 0xFF) << 16;
len |= (is.read() & 0xFF) << 8;
len |= (is.read() & 0xFF);
buffer = new byte[len];
is.read(buffer 0 buffer.length);
is.close();
is = null;
System.gc();
} catch (Exception e) {
buffer = null;
e.printStackTrace();
System.gc();
return null;
}
return Image.createImage(buffer 0 buffer.length);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 69632 2005-01-09 08:59 BinCompiler压缩图片\BinCompiler.exe
文件 1670 2009-12-12 09:43 BinCompiler压缩图片\BinReader.java
目录 0 2009-03-24 14:36 BinCompiler压缩图片
----------- --------- ---------- ----- ----
71302 3
- 上一篇:nrf905无线双向通信
- 下一篇:基于Web图书推荐系统设计
相关资源
- PuTTY+PuTTYGen打包
- C打包.doc
- TS demux到ES流,然后ES到PES再到TS进行打
- ETC打包工具解包工具
- CPB解包打包合并工具
- AssetBundleBrowser.unitypackage
- 打包管理工具 Asset Bundle Manager
- james 3.0.1 需要配置的文件打包合集
- 很好用的软件打包工具经典珍藏版
- 打包解包整理vs2013.zip
- 梦幻 大话 was wdf 解包 打包
- was打包器.exe
- 安卓ROM system.img 解包与打包工具unya
- 软件打包工具|多个文件打包成EXE文件
- OllyDBG完美教程中用到的crackmes.cjb.ne
- iOS打包证书
- exe依赖dll提取软件
- openGL打包库
- 课程设计 51单片机电机PID调速打包k
- RTP打包与解析,荷载PS和H264
- 『Friends ※ 老友记 』全十季中英文剧
- pckzup打包解包工具
- 数控直流电流源打包的
- zw_qq_37153706-10864156-2018年9月2日脚本更
- 900个cad填充图案打包
- 数据包的打包和解包
- 等保2.0管理制度打包(共32份) -.zi
- STM32F103C8T6+ENC28J60+UIP1.0整个工程打包
- Nginx服务打包插件winsw
- pintos操作系统实验27个全pass
评论
共有 条评论