Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
e186e3b7
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看板
提交
e186e3b7
编写于
6月 15, 2015
作者:
A
aefimov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8080774: DateFormat for Singapore/English locale (en_SG) is M/d/yy instead of d/M/yy
Reviewed-by: naoto
上级
c95c0d97
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
78 addition
and
5 deletion
+78
-5
src/share/classes/sun/text/resources/en/FormatData_en_SG.java
...share/classes/sun/text/resources/en/FormatData_en_SG.java
+8
-0
test/java/text/Format/DateFormat/LocaleDateFormats.java
test/java/text/Format/DateFormat/LocaleDateFormats.java
+63
-0
test/sun/text/resources/LocaleData
test/sun/text/resources/LocaleData
+6
-4
test/sun/text/resources/LocaleDataTest.java
test/sun/text/resources/LocaleDataTest.java
+1
-1
未找到文件。
src/share/classes/sun/text/resources/en/FormatData_en_SG.java
浏览文件 @
e186e3b7
...
@@ -88,6 +88,14 @@ public class FormatData_en_SG extends ParallelListResourceBundle {
...
@@ -88,6 +88,14 @@ public class FormatData_en_SG extends ParallelListResourceBundle {
"NaN"
,
"NaN"
,
}
}
},
},
{
"DatePatterns"
,
new
String
[]
{
"EEEE, d MMMM, yyyy"
,
// full date pattern
"d MMMM, yyyy"
,
// long date pattern
"d MMM, yyyy"
,
// medium date pattern
"d/M/yy"
,
// short date pattern
}
},
};
};
}
}
}
}
test/java/text/Format/DateFormat/LocaleDateFormats.java
0 → 100644
浏览文件 @
e186e3b7
/*
* Copyright (c) 2015, 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
* 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8080774
* @run testng/othervm -Djava.locale.providers=JRE,CLDR LocaleDateFormats
* @summary This file contains tests for JRE locales date formats
*/
import
java.text.DateFormat
;
import
java.util.Calendar
;
import
java.util.Locale
;
import
static
org
.
testng
.
Assert
.
assertEquals
;
import
org.testng.annotations.DataProvider
;
import
org.testng.annotations.Test
;
public
class
LocaleDateFormats
{
@Test
(
dataProvider
=
"dateFormats"
)
public
void
testDateFormat
(
Locale
loc
,
int
style
,
int
year
,
int
month
,
int
date
,
String
expectedString
)
{
Calendar
cal
=
Calendar
.
getInstance
(
loc
);
cal
.
set
(
year
,
month
-
1
,
date
);
// Create date formatter based on requested style and test locale
DateFormat
df
=
DateFormat
.
getDateInstance
(
style
,
loc
);
// Test the date format
assertEquals
(
df
.
format
(
cal
.
getTime
()),
expectedString
);
}
@DataProvider
(
name
=
"dateFormats"
)
private
Object
[][]
dateFormats
()
{
return
new
Object
[][]
{
//8080774
//Locale, Format type, year, month, date, expected result
{
localeEnSG
,
DateFormat
.
SHORT
,
2015
,
5
,
6
,
"6/5/15"
},
{
localeEnSG
,
DateFormat
.
MEDIUM
,
2015
,
5
,
6
,
"6 May, 2015"
},
{
localeEnSG
,
DateFormat
.
LONG
,
2015
,
5
,
6
,
"6 May, 2015"
},
{
localeEnSG
,
DateFormat
.
FULL
,
2015
,
5
,
6
,
"Wednesday, 6 May, 2015"
}
};
}
// en_SG Locale instance
private
static
final
Locale
localeEnSG
=
new
Locale
(
"en"
,
"SG"
);
}
test/sun/text/resources/LocaleData
浏览文件 @
e186e3b7
...
@@ -5417,11 +5417,13 @@ FormatData/en_SG/TimePatterns/0=h:mm:ss a z
...
@@ -5417,11 +5417,13 @@ FormatData/en_SG/TimePatterns/0=h:mm:ss a z
FormatData/en_SG/TimePatterns/1=h:mm:ss a z
FormatData/en_SG/TimePatterns/1=h:mm:ss a z
FormatData/en_SG/TimePatterns/2=h:mm:ss a
FormatData/en_SG/TimePatterns/2=h:mm:ss a
FormatData/en_SG/TimePatterns/3=h:mm a
FormatData/en_SG/TimePatterns/3=h:mm a
FormatData/en_SG/DatePatterns/0=EEEE, MMMM d, yyyy
FormatData/en_SG/DatePatterns/1=MMMM d, yyyy
FormatData/en_SG/DatePatterns/2=MMM d, yyyy
FormatData/en_SG/DatePatterns/3=M/d/yy
FormatData/en_SG/DateTimePatterns/0={1} {0}
FormatData/en_SG/DateTimePatterns/0={1} {0}
# bug# 8080774
# Day should precede month for all date formats in en_SG - CLDR 27.0.0
FormatData/en_SG/DatePatterns/0=EEEE, d MMMM, yyyy
FormatData/en_SG/DatePatterns/1=d MMMM, yyyy
FormatData/en_SG/DatePatterns/2=d MMM, yyyy
FormatData/en_SG/DatePatterns/3=d/M/yy
# Use approved data
# Use approved data
FormatData/ms/Eras/0=BCE
FormatData/ms/Eras/0=BCE
FormatData/ms/Eras/1=CE
FormatData/ms/Eras/1=CE
...
...
test/sun/text/resources/LocaleDataTest.java
浏览文件 @
e186e3b7
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
* 6919624 6998391 7019267 7020960 7025837 7020583 7036905 7066203 7101495
* 6919624 6998391 7019267 7020960 7025837 7020583 7036905 7066203 7101495
* 7003124 7085757 7028073 7171028 7189611 8000983 7195759 8004489 8006509
* 7003124 7085757 7028073 7171028 7189611 8000983 7195759 8004489 8006509
* 7114053 7074882 7040556 8013836 8021121 6192407 6931564 8027695 7090826
* 7114053 7074882 7040556 8013836 8021121 6192407 6931564 8027695 7090826
* 8017142 8037343 8055222 8042126 8074791 8075173
* 8017142 8037343 8055222 8042126 8074791 8075173
8080774
* @summary Verify locale data
* @summary Verify locale data
*
*
*/
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录