xlang
v5.1 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
ZipArchive.x
浏览该文件的文档.
1
5
class
ZipArchive
{
9
public
ZipArchive
();
10
public
bool
open
(
Stream
)
11
throws
IllegalArgumentException
;
12
public
bool
create
(
Stream
)
13
throws
IllegalArgumentException
;
14
public
int
getEntriesCount
();
15
public
@NotNilptr
ZipEntry
getEntry
(
int
);
16
public
@NotNilptr
ZipEntry
findEntry
(
String
);
17
public
void
close
();
18
public
void
finish
();
19
public
bool
createEntry
(
ZipFile
);
20
public
void
setComment
(
String
);
21
public
@NotNilptr
String
getComment
();
22
public
void
finalize
();
23
};
IllegalArgumentException
Definition
IllegalArgumentException.x:5
Stream
Definition
Stream.x:6
String
Definition
String.x:5
ZipArchive
Definition
ZipArchive.x:5
ZipArchive.setComment
void setComment(String)
ZipArchive.findEntry
ZipEntry findEntry(String)
ZipArchive.ZipArchive
ZipArchive()
ZipArchive.getEntry
ZipEntry getEntry(int)
ZipArchive.open
bool open(Stream)
ZipArchive.finalize
void finalize()
ZipArchive.getComment
String getComment()
ZipArchive.close
void close()
ZipArchive.getEntriesCount
int getEntriesCount()
ZipArchive.finish
void finish()
ZipArchive.createEntry
bool createEntry(ZipFile)
ZipArchive.create
bool create(Stream)
ZipEntry
Definition
ZipEntry.x:4
ZipFile
Definition
ZipFile.x:5
std
ZipArchive.x
制作者
1.9.8