Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
024583ab
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看板
提交
024583ab
编写于
8月 15, 2013
作者:
D
dxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
4858457: File.getCanonicalPath() throws IOException when invoked with "nul" (win)
Reviewed-by: alanb
上级
35eebb8f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
35 addition
and
14 deletion
+35
-14
src/windows/native/java/io/canonicalize_md.c
src/windows/native/java/io/canonicalize_md.c
+5
-1
test/java/io/File/WinDeviceName.java
test/java/io/File/WinDeviceName.java
+30
-13
未找到文件。
src/windows/native/java/io/canonicalize_md.c
浏览文件 @
024583ab
/*
* Copyright (c) 1998, 201
1
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -179,6 +179,10 @@ static int
wdots
(
WCHAR
*
start
)
{
WCHAR
*
p
=
start
;
// Skip "\\.\" prefix
if
(
wcslen
(
p
)
>
4
&&
!
wcsncmp
(
p
,
L"
\\\\
.
\\
"
,
4
))
p
=
p
+
4
;
while
(
*
p
)
{
if
((
p
=
wcschr
(
p
,
L'.'
))
==
NULL
)
// find next occurence of '.'
return
0
;
// no more dots
...
...
test/java/io/File/WinDeviceName.java
浏览文件 @
024583ab
/*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006,
2013,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -22,11 +22,12 @@
*/
/* @test
@bug 6176051
@summary Check
isFile's handling of Windows device name
s
@bug 6176051
4858457
@summary Check
whether reserved names are handled correctly on Window
s
*/
import
java.io.File
;
import
java.io.IOException
;
public
class
WinDeviceName
{
private
static
String
devnames
[]
=
{
...
...
@@ -35,22 +36,38 @@ public class WinDeviceName {
"LPT3"
,
"LPT4"
,
"LPT5"
,
"LPT6"
,
"LPT7"
,
"LPT8"
,
"LPT9"
,
"CLOCK$"
};
public
static
void
main
(
String
[]
args
)
throws
Exception
{
public
static
void
main
(
String
[]
args
)
{
String
osName
=
System
.
getProperty
(
"os.name"
);
if
(!
osName
.
startsWith
(
"Windows"
))
{
return
;
}
for
(
int
i
=
0
;
i
<
devnames
.
length
;
i
++)
{
if
(
new
File
(
devnames
[
i
]).
isFile
()
||
new
File
(
devnames
[
i
]
+
".txt"
).
isFile
())
{
if
(
"CLOCK$"
.
equals
(
devnames
[
i
])
&&
(
osName
.
startsWith
(
"Windows 9"
)
||
osName
.
startsWith
(
"Windows Me"
)))
{
//"CLOCK$" is a reserved device name for NT
continue
;
String
names
[]
=
{
devnames
[
i
],
devnames
[
i
]
+
".TXT"
,
devnames
[
i
].
toLowerCase
(),
devnames
[
i
].
toLowerCase
()
+
".txt"
};
for
(
String
name
:
names
)
{
File
f
=
new
File
(
name
);
if
(
f
.
isFile
())
{
if
(
"CLOCK$"
.
equals
(
devnames
[
i
])
&&
(
osName
.
startsWith
(
"Windows 9"
)
||
osName
.
startsWith
(
"Windows Me"
)))
{
//"CLOCK$" is a reserved device name for NT
continue
;
}
throw
new
RuntimeException
(
"isFile() returns true for "
+
"Device name "
+
devnames
[
i
]);
}
if
(!
"CLOCK$"
.
equals
(
devnames
[
i
]))
{
try
{
System
.
out
.
println
((
new
File
(
name
)).
getCanonicalPath
());
}
catch
(
IOException
ie
)
{
throw
new
RuntimeException
(
"Fail to get canonical "
+
"path for "
+
name
);
}
}
throw
new
Exception
(
"isFile() returns true for Device name "
+
devnames
[
i
]);
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录