Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
c0af6e3f
Commit
c0af6e3f
authored
Aug 28, 2020
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
默认日期格式的支持
parent
9b88673e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
0 deletions
+92
-0
AreaHelper.java
...src/main/java/com/yanzuoguang/util/helper/AreaHelper.java
+92
-0
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/helper/AreaHelper.java
0 → 100644
View file @
c0af6e3f
package
com
.
yanzuoguang
.
util
.
helper
;
import
com.yanzuoguang.util.exception.CodeException
;
public
class
AreaHelper
{
public
static
final
int
AREA_LENGTH
=
9
;
/**
* 获取地区Id
*
* @param fromAreaId
* @return
*/
public
static
String
getCountryId
(
String
fromAreaId
)
{
return
getLengthId
(
fromAreaId
,
3
);
}
/**
* 获取地区Id
*
* @param fromAreaId
* @return
*/
public
static
String
getProvinceId
(
String
fromAreaId
)
{
return
getLengthId
(
fromAreaId
,
5
);
}
/**
* 获取地区Id
*
* @param fromAreaId
* @return
*/
public
static
String
getCityId
(
String
fromAreaId
)
{
return
getLengthId
(
fromAreaId
,
7
);
}
/**
* 获取地区Id
*
* @param fromAreaId
* @return
*/
public
static
String
getAreaId
(
String
fromAreaId
)
{
return
getLengthId
(
fromAreaId
,
AREA_LENGTH
);
}
private
static
String
getLengthId
(
String
fromAreaId
,
int
length
)
{
if
(
StringHelper
.
isEmpty
(
fromAreaId
))
{
return
fromAreaId
;
}
else
if
(
fromAreaId
.
length
()
!=
AREA_LENGTH
)
{
throw
new
CodeException
(
"地区编码不合法,长度不为9"
);
}
String
ret
=
fromAreaId
.
substring
(
0
,
length
-
1
);
String
retSimple
=
getSimple
(
fromAreaId
);
if
(
StringHelper
.
compare
(
ret
,
retSimple
))
{
return
getFull
(
retSimple
);
}
return
StringHelper
.
EMPTY
;
}
/**
* 获取简写Id
*
* @param fromAreaId
* @return
*/
public
static
String
getSimple
(
String
fromAreaId
)
{
return
StringHelper
.
trimEnd
(
fromAreaId
,
"00"
);
}
/**
* 获取全写Id
*
* @param fromAreaId
* @return
*/
public
static
String
getFull
(
String
fromAreaId
)
{
if
(
StringHelper
.
isEmpty
(
fromAreaId
))
{
return
fromAreaId
;
}
else
if
(
fromAreaId
.
length
()
>
AREA_LENGTH
)
{
throw
new
CodeException
(
"地区编码不合法,长度大于9"
);
}
else
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
fromAreaId
);
for
(
int
i
=
fromAreaId
.
length
();
i
<
AREA_LENGTH
;
i
++)
{
sb
.
append
(
"0"
);
}
return
sb
.
toString
();
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment