Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
fa7286ab
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看板
提交
fa7286ab
编写于
10月 03, 2008
作者:
P
peytoia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6683975: [fmt-da] Regression: Java 6 returns English DateFormatPatterns for Thai locale
Reviewed-by: okutsu
上级
03da64b6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
131 addition
and
12 deletion
+131
-12
src/share/classes/sun/text/resources/FormatData_th.java
src/share/classes/sun/text/resources/FormatData_th.java
+17
-12
test/java/text/Format/DateFormat/Bug6683975.java
test/java/text/Format/DateFormat/Bug6683975.java
+114
-0
未找到文件。
src/share/classes/sun/text/resources/FormatData_th.java
浏览文件 @
fa7286ab
...
@@ -47,6 +47,19 @@ public class FormatData_th extends ListResourceBundle {
...
@@ -47,6 +47,19 @@ public class FormatData_th extends ListResourceBundle {
* Overrides ListResourceBundle
* Overrides ListResourceBundle
*/
*/
protected
final
Object
[][]
getContents
()
{
protected
final
Object
[][]
getContents
()
{
String
[]
dateTimePatterns
=
new
String
[]
{
"H' \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 'm' \u0e19\u0e32\u0e17\u0e35 'ss' \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35'"
,
// full time pattern
"H' \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 'm' \u0e19\u0e32\u0e17\u0e35'"
,
// long time pattern
"H:mm:ss"
,
// medium time pattern
"H:mm' \u0e19.'"
,
// short time pattern (modified) -- add ' \u0e19.'
// (it means something like "o'clock" in english)
"EEEE'\u0e17\u0e35\u0e48 'd MMMM G yyyy"
,
// full date pattern
"d MMMM yyyy"
,
// long date pattern
"d MMM yyyy"
,
// medium date pattern
"d/M/yyyy"
,
// short date pattern
"{1}, {0}"
// date-time pattern
};
return
new
Object
[][]
{
return
new
Object
[][]
{
{
"MonthNames"
,
{
"MonthNames"
,
new
String
[]
{
new
String
[]
{
...
@@ -129,18 +142,10 @@ public class FormatData_th extends ListResourceBundle {
...
@@ -129,18 +142,10 @@ public class FormatData_th extends ListResourceBundle {
}
}
},
},
{
"sun.util.BuddhistCalendar.DateTimePatterns"
,
{
"sun.util.BuddhistCalendar.DateTimePatterns"
,
new
String
[]
{
dateTimePatterns
"H' \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 'm' \u0e19\u0e32\u0e17\u0e35 'ss' \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35'"
,
// full time pattern
},
"H' \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 'm' \u0e19\u0e32\u0e17\u0e35'"
,
// long time pattern
{
"DateTimePatterns"
,
"H:mm:ss"
,
// medium time pattern
dateTimePatterns
"H:mm' \u0e19.'"
,
// short time pattern (modified) -- add ' \u0e19.'
// (it means something like "o'clock" in english)
"EEEE'\u0e17\u0e35\u0e48 'd MMMM G yyyy"
,
// full date pattern
"d MMMM yyyy"
,
// long date pattern
"d MMM yyyy"
,
// medium date pattern
"d/M/yyyy"
,
// short date pattern
"{1}, {0}"
// date-time pattern
}
},
},
{
"DateTimePatternChars"
,
"GanjkHmsSEDFwWxhKzZ"
},
{
"DateTimePatternChars"
,
"GanjkHmsSEDFwWxhKzZ"
},
};
};
...
...
test/java/text/Format/DateFormat/Bug6683975.java
0 → 100644
浏览文件 @
fa7286ab
/*
* Copyright 2008 Sun Microsystems, Inc. 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/**
* @test
* @bug 6683975
* @summary Make sure that date is formatted correctlyin th locale.
*/
import
java.text.*
;
import
java.util.*
;
public
class
Bug6683975
{
private
static
boolean
err
=
false
;
private
static
Locale
th
=
new
Locale
(
"th"
,
""
);
private
static
Locale
th_TH
=
new
Locale
(
"th"
,
"TH"
);
private
static
Date
date
=
new
Date
(
2008
-
1900
,
Calendar
.
OCTOBER
,
1
,
0
,
0
,
0
);
private
static
String
expected_th
[]
=
{
"\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23\u0e17\u0e35\u0e48 30 \u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19 \u0e04.\u0e28. 2008, 8 \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 0 \u0e19\u0e32\u0e17\u0e35 00 \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35"
,
// 0: FULL
"30 \u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19 2008, 8 \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 0 \u0e19\u0e32\u0e17\u0e35"
,
// 1: LONG
"30 \u0e01.\u0e22. 2008, 8:00:00"
,
// 2: MEDIUM
"30/9/2008, 8:00 \u0e19."
,
// 3: SHORT
};
private
static
String
expected_th_TH
[]
=
{
"\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23\u0e17\u0e35\u0e48 30 \u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19 \u0e1e.\u0e28. 2551, 8 \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 0 \u0e19\u0e32\u0e17\u0e35 00 \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35"
,
// 0: FULL
"30 \u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19 2551, 8 \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 0 \u0e19\u0e32\u0e17\u0e35"
,
// 1: LONG
"30 \u0e01.\u0e22. 2551, 8:00:00"
,
// 2: MEDIUM
"30/9/2551, 8:00 \u0e19."
// 3: SHORT
};
private
static
String
stylePattern
[]
=
{
"FULL"
,
"LONG"
,
"MEDIUM"
,
"SHORT"
};
private
static
void
test
(
int
style
)
{
DateFormat
df_th
=
DateFormat
.
getDateTimeInstance
(
style
,
style
,
th
);
DateFormat
df_th_TH
=
DateFormat
.
getDateTimeInstance
(
style
,
style
,
th_TH
);
String
str_th
=
((
SimpleDateFormat
)
df_th
).
toPattern
();
String
str_th_TH
=
((
SimpleDateFormat
)
df_th_TH
).
toPattern
();
if
(!
str_th
.
equals
(
str_th_TH
))
{
err
=
true
;
System
.
err
.
println
(
"Error: Pattern for th locale should be the same as pattern for th_TH locale. ("
+
stylePattern
[
style
]
+
")"
);
System
.
err
.
println
(
"\tth: "
+
str_th
);
System
.
err
.
println
(
"\tth_TH: "
+
str_th_TH
);
}
str_th
=
df_th
.
format
(
date
);
if
(!
expected_th
[
style
].
equals
(
str_th
))
{
err
=
true
;
System
.
err
.
println
(
"Error: Formatted date in th locale is incorrect in "
+
stylePattern
[
style
]
+
" pattern."
);
System
.
err
.
println
(
"\tExpected: "
+
expected_th
[
style
]);
System
.
err
.
println
(
"\tGot: "
+
str_th
);
}
str_th_TH
=
df_th_TH
.
format
(
date
);
if
(!
expected_th_TH
[
style
].
equals
(
str_th_TH
))
{
err
=
true
;
System
.
err
.
println
(
"Error: Formatted date in th_TH locale is incorrect in "
+
stylePattern
[
style
]
+
" pattern."
);
System
.
err
.
println
(
"\tExpected: "
+
expected_th_TH
[
style
]);
System
.
err
.
println
(
"\tGot: "
+
str_th_TH
);
}
}
public
static
void
main
(
String
[]
args
)
{
TimeZone
timezone
=
TimeZone
.
getDefault
();
Locale
locale
=
Locale
.
getDefault
();
TimeZone
.
setDefault
(
TimeZone
.
getTimeZone
(
"US/Pacific"
));
Locale
.
setDefault
(
Locale
.
US
);
try
{
test
(
DateFormat
.
FULL
);
test
(
DateFormat
.
LONG
);
test
(
DateFormat
.
MEDIUM
);
test
(
DateFormat
.
SHORT
);
}
catch
(
Exception
e
)
{
err
=
true
;
System
.
err
.
println
(
"Unexpected exception was thrown: "
+
e
);
}
finally
{
TimeZone
.
setDefault
(
timezone
);
Locale
.
setDefault
(
locale
);
if
(
err
)
{
throw
new
RuntimeException
(
"Failed."
);
}
else
{
System
.
out
.
println
(
"Passed."
);
}
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录