当前位置: 技术问答>java相关
"0xC0C0BABE" 有什么特殊的含义吗?
来源: 互联网 发布时间:2015-11-18
本文导语: private static final int MAGIC = 0xC0C0BABE; File f = new File(dbname); if (f.exists() && f.canRead() && f.canWrite()) { db = new RandomAccessFile(f, "rw"); headerLen = db.readInt(); ...
private static final int MAGIC = 0xC0C0BABE;
File f = new File(dbname);
if (f.exists() && f.canRead() && f.canWrite())
{
db = new RandomAccessFile(f, "rw");
headerLen = db.readInt();
int nFields= db.readInt();
recordCount = db.readInt();
description = new FieldInfo[nFields];
。。。。。。。。。。。。。。。
if (db.readInt() != MAGIC)
{
throw new IOException("Data: corrupted database file. " +
"Magic not found in file " + dbname);
}
大约。我也能猜出来,但是希望又一个明确的答案。谢谢
File f = new File(dbname);
if (f.exists() && f.canRead() && f.canWrite())
{
db = new RandomAccessFile(f, "rw");
headerLen = db.readInt();
int nFields= db.readInt();
recordCount = db.readInt();
description = new FieldInfo[nFields];
。。。。。。。。。。。。。。。
if (db.readInt() != MAGIC)
{
throw new IOException("Data: corrupted database file. " +
"Magic not found in file " + dbname);
}
大约。我也能猜出来,但是希望又一个明确的答案。谢谢
|
bmp等图形文件开头有标示符
|
db文件开头的标示符。
|
bmp等图形文件开头有标示符
bmp文件可以有
别的文件当然也可以有了
sigh
bmp文件可以有
别的文件当然也可以有了
sigh
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。