Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
a3e83ab9
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a3e83ab9
编写于
5月 14, 2010
作者:
S
sherman
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
4263582: RFE: GZIPInputStream throws IOException on non-gzipped data
Summary: throw ZipException instead of IOException Reviewed-by: martin
上级
ae4c8691
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
6 deletion
+14
-6
src/share/classes/java/util/zip/GZIPInputStream.java
src/share/classes/java/util/zip/GZIPInputStream.java
+14
-6
未找到文件。
src/share/classes/java/util/zip/GZIPInputStream.java
浏览文件 @
a3e83ab9
...
...
@@ -66,6 +66,9 @@ class GZIPInputStream extends InflaterInputStream {
* Creates a new input stream with the specified buffer size.
* @param in the input stream
* @param size the input buffer size
*
* @exception ZipException if a GZIP format error has occurred or the
* compression method used is unsupported
* @exception IOException if an I/O error has occurred
* @exception IllegalArgumentException if size is <= 0
*/
...
...
@@ -79,6 +82,9 @@ class GZIPInputStream extends InflaterInputStream {
/**
* Creates a new input stream with a default buffer size.
* @param in the input stream
*
* @exception ZipException if a GZIP format error has occurred or the
* compression method used is unsupported
* @exception IOException if an I/O error has occurred
*/
public
GZIPInputStream
(
InputStream
in
)
throws
IOException
{
...
...
@@ -94,12 +100,14 @@ class GZIPInputStream extends InflaterInputStream {
* @param len the maximum number of bytes read
* @return the actual number of bytes read, or -1 if the end of the
* compressed input stream is reached
*
* @exception NullPointerException If <code>buf</code> is <code>null</code>.
* @exception IndexOutOfBoundsException If <code>off</code> is negative,
* <code>len</code> is negative, or <code>len</code> is greater than
* <code>buf.length - off</code>
* @exception IOException if an I/O error has occurred or the compressed
* input data is corrupt
* @exception ZipException if the compressed input data is corrupt.
* @exception IOException if an I/O error has occurred.
*
*/
public
int
read
(
byte
[]
buf
,
int
off
,
int
len
)
throws
IOException
{
ensureOpen
();
...
...
@@ -151,11 +159,11 @@ class GZIPInputStream extends InflaterInputStream {
crc
.
reset
();
// Check header magic
if
(
readUShort
(
in
)
!=
GZIP_MAGIC
)
{
throw
new
IO
Exception
(
"Not in GZIP format"
);
throw
new
Zip
Exception
(
"Not in GZIP format"
);
}
// Check compression method
if
(
readUByte
(
in
)
!=
8
)
{
throw
new
IO
Exception
(
"Unsupported compression method"
);
throw
new
Zip
Exception
(
"Unsupported compression method"
);
}
// Read flags
int
flg
=
readUByte
(
in
);
...
...
@@ -177,7 +185,7 @@ class GZIPInputStream extends InflaterInputStream {
if
((
flg
&
FHCRC
)
==
FHCRC
)
{
int
v
=
(
int
)
crc
.
getValue
()
&
0xffff
;
if
(
readUShort
(
in
)
!=
v
)
{
throw
new
IO
Exception
(
"Corrupt GZIP header"
);
throw
new
Zip
Exception
(
"Corrupt GZIP header"
);
}
}
}
...
...
@@ -196,7 +204,7 @@ class GZIPInputStream extends InflaterInputStream {
if
((
readUInt
(
in
)
!=
crc
.
getValue
())
||
// rfc1952; ISIZE is the input size modulo 2^32
(
readUInt
(
in
)
!=
(
inf
.
getBytesWritten
()
&
0xffffffff
L
)))
throw
new
IO
Exception
(
"Corrupt GZIP trailer"
);
throw
new
Zip
Exception
(
"Corrupt GZIP trailer"
);
}
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录