public class CompactFile
extends com.supermap.data.InternalHandleDisposable
构造器和说明 |
---|
CompactFile()
构造CompactFile类的一个新对象。
|
限定符和类型 | 方法和说明 |
---|---|
boolean |
Close()
关闭已打开的紧凑文件。
|
int |
Creat(String cfPath,
int rowNum,
int colNum,
String pwd)
创建新的紧凑文件。
|
void |
dispose()
释放 CompactFile 对象占有的资源。
|
byte[] |
getAt(int row,
int col)
从紧凑文件中读取数据。
|
static byte[] |
getData(String cfPath,
String pwd,
int row,
int col) |
int |
Open(String cfPath,
String pwd)
打开已有的紧凑文件。
|
int |
Open(String cfPath,
String pwd,
CompactFileOpenMode openmode) |
int |
remove(int row,
int col) |
int |
SetAt(int row,
int col,
byte[] data)
向紧凑文件中写入数据。
|
static void |
setIsDisposable(com.supermap.data.InternalHandleDisposable obj,
boolean disposable) |
public void dispose()
public int Creat(String cfPath, int rowNum, int colNum, String pwd)
cfPath
- 紧凑文件路径名称。rowNum
- 紧凑文件中总的索引行数。colNum
- 紧凑文件中总的索引列数。pwd
- 紧凑文件密码。public int Open(String cfPath, String pwd)
cfPath
- 紧凑文件路径名称。pwd
- 紧凑文件密码。public int Open(String cfPath, String pwd, CompactFileOpenMode openmode)
public boolean Close()
public int SetAt(int row, int col, byte[] data)
row
- 紧凑文件中对应的索引行(必须小于总行数)。col
- 紧凑文件中对应的索引列(必须小于总列数)。data
- 写入的数据。public byte[] getAt(int row, int col)
row
- 紧凑文件中对应的索引行(必须小于总行数)。col
- 紧凑文件中对应的索引列(必须小于总列数)。public int remove(int row, int col)
public static void setIsDisposable(com.supermap.data.InternalHandleDisposable obj, boolean disposable)
Copyright © 2021–2024 SuperMap. All rights reserved.