当前位置:   article > 正文

Java身份证正则校验、性别年龄籍贯提取_java身份证信息提取

java身份证信息提取

共2个文件

IdcardInfoExtractor.java

  1. package cn.com.baidu.utils.identity;
  2. import java.text.SimpleDateFormat;
  3. import java.util.Calendar;
  4. import java.util.Date;
  5. import java.util.GregorianCalendar;
  6. import java.util.HashMap;
  7. import java.util.Map;
  8. import java.util.Set;
  9. /**
  10. * 提取身份证相关信息
  11. * ClassName: IdcardInfoExtractor
  12. * @Description: TODO
  13. * 创建工具: MyEclipse2014
  14. * 运行环境: [Tomcat7以上,MySql5.6以上,JDK7以上]
  15. * @author CBC
  16. * @date 2018年9月17日
  17. */
  18. public class IdcardInfoExtractor {
  19. // 省份
  20. private String province;
  21. // 城市
  22. private String city;
  23. // 区县
  24. private String region;
  25. // 年份
  26. private int year;
  27. // 月份
  28. private int month;
  29. // 日期
  30. private int day;
  31. // 性别
  32. private String gender;
  33. // 出生日期
  34. private Date birthday;
  35. // 年龄
  36. private int age;
  37. // 年龄
  38. private boolean isIdCard;
  39. public boolean isIdCard() {
  40. return isIdCard;
  41. }
  42. public void setIdCard(boolean isIdCard) {
  43. this.isIdCard = isIdCard;
  44. }
  45. @SuppressWarnings("serial")
  46. private Map<String, String> cityCodeMap = new HashMap<String, String>() {
  47. {
  48. this.put("11", "北京");
  49. this.put("12", "天津");
  50. this.put("13", "河北");
  51. this.put("14", "山西");
  52. this.put("15", "内蒙古");
  53. this.put("21", "辽宁");
  54. this.put("22", "吉林");
  55. this.put("23", "黑龙江");
  56. this.put("31", "上海");
  57. this.put("32", "江苏");
  58. this.put("33", "浙江");
  59. this.put("34", "安徽");
  60. this.put("35", "福建");
  61. this.put("36", "江西");
  62. this.put("37", "山东");
  63. this.put("41", "河南");
  64. this.put("42", "湖北");
  65. this.put("43", "湖南");
  66. this.put("44", "广东");
  67. this.put("45", "广西");
  68. this.put("46", "海南");
  69. this.put("50", "重庆");
  70. this.put("51", "四川");
  71. this.put("52", "贵州");
  72. this.put("53", "云南");
  73. this.put("54", "西藏");
  74. this.put("61", "陕西");
  75. this.put("62", "甘肃");
  76. this.put("63", "青海");
  77. this.put("64", "宁夏");
  78. this.put("65", "新疆");
  79. this.put("71", "台湾");
  80. this.put("81", "香港");
  81. this.put("82", "澳门");
  82. this.put("91", "国外");
  83. }
  84. };
  85. private IdcardValidator validator = null;
  86. /**
  87. * 通过构造方法初始化各个成员属性
  88. *
  89. * <p>Description: </p>
  90. *
  91. * @param idcard
  92. *
  93. */
  94. public IdcardInfoExtractor(String idcard) {
  95. try {
  96. validator = new IdcardValidator();
  97. if (validator.isValidatedAllIdcard(idcard)) {
  98. if (idcard.length() == 15) {
  99. idcard = validator.convertIdcarBy15bit(idcard);
  100. }
  101. // 获取省份
  102. String provinceId = idcard.substring(0, 2);
  103. Set<String> key = this.cityCodeMap.keySet();
  104. for (String id : key) {
  105. if (id.equals(provinceId)) {
  106. this.province = this.cityCodeMap.get(id);
  107. break;
  108. }
  109. }
  110. // 获取性别
  111. String id17 = idcard.substring(16, 17);
  112. if (Integer.parseInt(id17) % 2 != 0) {
  113. this.gender = "男";
  114. } else {
  115. this.gender = "女";
  116. }
  117. // 获取出生日期
  118. String birthday = idcard.substring(6, 14);
  119. Date birthdate = new SimpleDateFormat("yyyyMMdd").parse(birthday);
  120. this.birthday = birthdate;
  121. GregorianCalendar currentDay = new GregorianCalendar();
  122. currentDay.setTime(birthdate);
  123. this.year = currentDay.get(Calendar.YEAR);
  124. this.month = currentDay.get(Calendar.MONTH) + 1;
  125. this.day = currentDay.get(Calendar.DAY_OF_MONTH);
  126. this.age = getAgeByBirth(this.birthday);
  127. this.isIdCard =true;
  128. } else{
  129. this.isIdCard = false;
  130. }
  131. } catch (Exception e) {
  132. e.printStackTrace();
  133. }
  134. }
  135. /**
  136. * 通过生日获取年龄
  137. * @Description: TODO
  138. * @param @param birthday
  139. * @param @return
  140. * @return int
  141. * @throws
  142. * @author 崔宝铖
  143. * @date 2019年4月9日
  144. */
  145. public static int getAgeByBirth(Date birthday) {
  146. int age = 0;
  147. try {
  148. Calendar now = Calendar.getInstance();
  149. now.setTime(new Date());// 当前时间
  150. Calendar birth = Calendar.getInstance();
  151. birth.setTime(birthday);
  152. if (birth.after(now)) {//如果传入的时间,在当前时间的后面,返回0岁
  153. age = 0;
  154. } else {
  155. age = now.get(Calendar.YEAR) - birth.get(Calendar.YEAR);
  156. if (now.get(Calendar.DAY_OF_YEAR) > birth.get(Calendar.DAY_OF_YEAR)) {
  157. age += 1;
  158. }
  159. }
  160. return age;
  161. } catch (Exception e) {//兼容性更强,异常后返回数据
  162. return 0;
  163. }
  164. }
  165. public String getProvince() {
  166. return province;
  167. }
  168. public String getCity() {
  169. return city;
  170. }
  171. public String getRegion() {
  172. return region;
  173. }
  174. public int getYear() {
  175. return year;
  176. }
  177. public int getMonth() {
  178. return month;
  179. }
  180. public int getDay() {
  181. return day;
  182. }
  183. public String getGender() {
  184. return gender;
  185. }
  186. public Date getBirthday() {
  187. return birthday;
  188. }
  189. public int getAge() {
  190. return age;
  191. }
  192. public void setAge(int age) {
  193. this.age = age;
  194. }
  195. public Map<String, String> getCityCodeMap() {
  196. return cityCodeMap;
  197. }
  198. public void setCityCodeMap(Map<String, String> cityCodeMap) {
  199. this.cityCodeMap = cityCodeMap;
  200. }
  201. public IdcardValidator getValidator() {
  202. return validator;
  203. }
  204. public void setValidator(IdcardValidator validator) {
  205. this.validator = validator;
  206. }
  207. public void setProvince(String province) {
  208. this.province = province;
  209. }
  210. public void setCity(String city) {
  211. this.city = city;
  212. }
  213. public void setRegion(String region) {
  214. this.region = region;
  215. }
  216. public void setYear(int year) {
  217. this.year = year;
  218. }
  219. public void setMonth(int month) {
  220. this.month = month;
  221. }
  222. public void setDay(int day) {
  223. this.day = day;
  224. }
  225. public void setGender(String gender) {
  226. this.gender = gender;
  227. }
  228. public void setBirthday(Date birthday) {
  229. this.birthday = birthday;
  230. }
  231. @Override
  232. public String toString() {
  233. return "省份:" + this.province + ",性别:" + this.gender + ",出生日期:"
  234. + this.birthday + ",年龄:"+this.age;
  235. }
  236. public static void main(String[] args) {
  237. String idcard = "123456789101234567";
  238. IdcardInfoExtractor ie = new IdcardInfoExtractor(idcard);
  239. System.out.println(ie.isIdCard);
  240. System.out.println(ie.toString());
  241. System.out.println(ie.getProvince());
  242. }
  243. }

IdcardValidator.java

  1. package cn.com.baidu.utils.identity;
  2. /**
  3. * 身份证前6位【ABCDEF】为行政区划数字代码(简称数字码)说明(参考《GB/T 2260-2007 中华人民共和国行政区划代码》):
  4. * 该数字码的编制原则和结构分析,它采用三层六位层次码结构,按层次分别表示我国各省(自治区,直辖市,特别行政区)、
  5. * 市(地区,自治州,盟)、县(自治县、县级市、旗、自治旗、市辖区、林区、特区)。
  6. 数字码码位结构从左至右的含义是:
  7. 第一层为AB两位代码表示省、自治区、直辖市、特别行政区;
  8. 第二层为CD两位代码表示市、地区、自治州、盟、直辖市所辖市辖区、县汇总码、省(自治区)直辖县级行政区划汇总码,其中:
  9. ——01~20、51~70表示市,01、02还用于表示直辖市所辖市辖区、县汇总码;
  10. ——21~50表示地区、自治州、盟;
  11. ——90表示省(自治区)直辖县级行政区划汇总码。
  12. 第三层为EF两位表示县、自治县、县级市、旗、自治旗、市辖区、林区、特区,其中:
  13. ——01~20表示市辖区、地区(自治州、盟)辖县级市、市辖特区以及省(自治区)直辖县级行政区划中的县级市,01通常表示辖区汇总码;
  14. ——21~80表示县、自治县、旗、自治旗、林区、地区辖特区;
  15. ——81~99表示省(自治区)辖县级市。
  16. */
  17. import java.text.ParseException;
  18. import java.text.SimpleDateFormat;
  19. import java.util.Calendar;
  20. import java.util.Date;
  21. import java.util.GregorianCalendar;
  22. import java.util.HashMap;
  23. import java.util.Map;
  24. import java.util.regex.Pattern;
  25. /**
  26. * <p>
  27. * 类说明:身份证合法性校验
  28. * </p> CBC
  29. * 2018-9-17 18:10:42
  30. * <p>
  31. * --15位身份证号码:第7、8位为出生年份(两位数),第9、10位为出生月份,第11、12位代表出生日期,第15位代表性别,奇数为男,偶数为女。
  32. * --18位身份证号码
  33. * :第7、8、9、10位为出生年份(四位数),第11、第12位为出生月份,第13、14位代表出生日期,第17位代表性别,奇数为男,偶数为女。
  34. * </p>
  35. */
  36. @SuppressWarnings({ "unchecked", "unused", "all" })
  37. public class IdcardValidator {
  38. /**
  39. * 省,直辖市代码表: { 11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",
  40. * 21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏",
  41. * 33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东",41:"河南",
  42. * 42:"湖北",43:"湖南",44:"广东",45:"广西",46:"海南",50:"重庆",
  43. * 51:"四川",52:"贵州",53:"云南",54:"西藏",61:"陕西",62:"甘肃",
  44. * 63:"青海",64:"宁夏",65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外"}
  45. */
  46. protected String codeAndCity[][] = { { "11", "北京" }, { "12", "天津" },
  47. { "13", "河北" }, { "14", "山西" }, { "15", "内蒙古" }, { "21", "辽宁" },
  48. { "22", "吉林" }, { "23", "黑龙江" }, { "31", "上海" }, { "32", "江苏" },
  49. { "33", "浙江" }, { "34", "安徽" }, { "35", "福建" }, { "36", "江西" },
  50. { "37", "山东" }, { "41", "河南" }, { "42", "湖北" }, { "43", "湖南" },
  51. { "44", "广东" }, { "45", "广西" }, { "46", "海南" }, { "50", "重庆" },
  52. { "51", "四川" }, { "52", "贵州" }, { "53", "云南" }, { "54", "西藏" },
  53. { "61", "陕西" }, { "62", "甘肃" }, { "63", "青海" }, { "64", "宁夏" },
  54. { "65", "新疆" }, { "71", "台湾" }, { "81", "香港" }, { "82", "澳门" },
  55. { "91", "国外" } };
  56. private String cityCode[] = { "11", "12", "13", "14", "15", "21", "22",
  57. "23", "31", "32", "33", "34", "35", "36", "37", "41", "42", "43",
  58. "44", "45", "46", "50", "51", "52", "53", "54", "61", "62", "63",
  59. "64", "65", "71", "81", "82", "91" };
  60. // 每位加权因子
  61. private int power[] = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
  62. // 第18位校检码
  63. private String verifyCode[] = { "1", "0", "X", "9", "8", "7", "6", "5",
  64. "4", "3", "2" };
  65. /**
  66. * 验证所有的身份证的合法性
  67. *
  68. * @param idcard
  69. * @return
  70. */
  71. public boolean isValidatedAllIdcard(String idcard) {
  72. if (idcard.length() == 15) {
  73. idcard = this.convertIdcarBy15bit(idcard);
  74. }
  75. return this.isValidate18Idcard(idcard);
  76. }
  77. /**
  78. * <p>
  79. * 判断18位身份证的合法性
  80. * </p>
  81. * 根据〖中华人民共和国国家标准GB11643-1999〗中有关公民身份号码的规定,公民身份号码是特征组合码,由十七位数字本体码和一位数字校验码组成。
  82. * 排列顺序从左至右依次为:六位数字地址码,八位数字出生日期码,三位数字顺序码和一位数字校验码。
  83. * <p>
  84. * 顺序码: 表示在同一地址码所标识的区域范围内,对同年、同月、同 日出生的人编定的顺序号,顺序码的奇数分配给男性,偶数分配 给女性。
  85. * </p>
  86. * <p>
  87. * 1.前1、2位数字表示:所在省份的代码; 2.第3、4位数字表示:所在城市的代码; 3.第5、6位数字表示:所在区县的代码;
  88. * 4.第7~14位数字表示:出生年、月、日; 5.第15、16位数字表示:所在地的派出所的代码;
  89. * 6.第17位数字表示性别:奇数表示男性,偶数表示女性;
  90. * 7.第18位数字是校检码:也有的说是个人信息码,一般是随计算机的随机产生,用来检验身份证的正确性。校检码可以是0~9的数字,有时也用x表示。
  91. * </p>
  92. * <p>
  93. * 第十八位数字(校验码)的计算方法为: 1.将前面的身份证号码17位数分别乘以不同的系数。从第一位到第十七位的系数分别为:7 9 10 5 8 4
  94. * 2 1 6 3 7 9 10 5 8 4 2
  95. * </p>
  96. * <p>
  97. * 2.将这17位数字和系数相乘的结果相加。
  98. * </p>
  99. * <p>
  100. * 3.用加出来和除以11,看余数是多少?
  101. * </p>
  102. * 4.余数只可能有0 1 2 3 4 5 6 7 8 9 10这11个数字。其分别对应的最后一位身份证的号码为1 0 X 9 8 7 6 5 4 3
  103. * 2。
  104. * <p>
  105. * 5.通过上面得知如果余数是2,就会在身份证的第18位数字上出现罗马数字的Ⅹ。如果余数是10,身份证的最后一位号码就是2。
  106. * </p>
  107. *
  108. * @param idcard
  109. * @return
  110. */
  111. public boolean isValidate18Idcard(String idcard) {
  112. // 非18位为假
  113. if (idcard.length() != 18) {
  114. return false;
  115. }
  116. // 获取前17位
  117. String idcard17 = idcard.substring(0, 17);
  118. // 获取第18位
  119. String idcard18Code = idcard.substring(17, 18);
  120. char c[] = null;
  121. String checkCode = "";
  122. // 是否都为数字
  123. if (isDigital(idcard17)) {
  124. c = idcard17.toCharArray();
  125. } else {
  126. return false;
  127. }
  128. if (null != c) {
  129. int bit[] = new int[idcard17.length()];
  130. bit = converCharToInt(c);
  131. int sum17 = 0;
  132. sum17 = getPowerSum(bit);
  133. // 将和值与11取模得到余数进行校验码判断
  134. checkCode = getCheckCodeBySum(sum17);
  135. if (null == checkCode) {
  136. return false;
  137. }
  138. // 将身份证的第18位与算出来的校码进行匹配,不相等就为假
  139. if (!idcard18Code.equalsIgnoreCase(checkCode)) {
  140. return false;
  141. }
  142. }
  143. return true;
  144. }
  145. /**
  146. * 验证15位身份证的合法性,该方法验证不准确,最好是将15转为18位后再判断,该类中已提供。
  147. *
  148. * @param idcard
  149. * @return
  150. */
  151. public boolean isValidate15Idcard(String idcard) {
  152. // 非15位为假
  153. if (idcard.length() != 15) {
  154. return false;
  155. }
  156. // 是否全都为数字
  157. if (isDigital(idcard)) {
  158. String provinceid = idcard.substring(0, 2);
  159. String birthday = idcard.substring(6, 12);
  160. int year = Integer.parseInt(idcard.substring(6, 8));
  161. int month = Integer.parseInt(idcard.substring(8, 10));
  162. int day = Integer.parseInt(idcard.substring(10, 12));
  163. // 判断是否为合法的省份
  164. boolean flag = false;
  165. for (String id : cityCode) {
  166. if (id.equals(provinceid)) {
  167. flag = true;
  168. break;
  169. }
  170. }
  171. if (!flag) {
  172. return false;
  173. }
  174. // 该身份证生出日期在当前日期之后时为假
  175. Date birthdate = null;
  176. try {
  177. birthdate = new SimpleDateFormat("yyMMdd").parse(birthday);
  178. } catch (ParseException e) {
  179. e.printStackTrace();
  180. }
  181. if (birthdate == null || new Date().before(birthdate)) {
  182. return false;
  183. }
  184. // 判断是否为合法的年份
  185. GregorianCalendar curDay = new GregorianCalendar();
  186. int curYear = curDay.get(Calendar.YEAR);
  187. int year2bit = Integer.parseInt(String.valueOf(curYear)
  188. .substring(2));
  189. // 判断该年份的两位表示法,小于50的和大于当前年份的,为假
  190. if ((year < 50 && year > year2bit)) {
  191. return false;
  192. }
  193. // 判断是否为合法的月份
  194. if (month < 1 || month > 12) {
  195. return false;
  196. }
  197. // 判断是否为合法的日期
  198. boolean mflag = false;
  199. curDay.setTime(birthdate); // 将该身份证的出生日期赋于对象curDay
  200. switch (month) {
  201. case 1:
  202. case 3:
  203. case 5:
  204. case 7:
  205. case 8:
  206. case 10:
  207. case 12:
  208. mflag = (day >= 1 && day <= 31);
  209. break;
  210. case 2: // 公历的2月非闰年有28天,闰年的2月是29天。
  211. if (curDay.isLeapYear(curDay.get(Calendar.YEAR))) {
  212. mflag = (day >= 1 && day <= 29);
  213. } else {
  214. mflag = (day >= 1 && day <= 28);
  215. }
  216. break;
  217. case 4:
  218. case 6:
  219. case 9:
  220. case 11:
  221. mflag = (day >= 1 && day <= 30);
  222. break;
  223. }
  224. if (!mflag) {
  225. return false;
  226. }
  227. } else {
  228. return false;
  229. }
  230. return true;
  231. }
  232. /**
  233. * 将15位的身份证转成18位身份证
  234. *
  235. * @param idcard
  236. * @return
  237. */
  238. public String convertIdcarBy15bit(String idcard) {
  239. String idcard17 = null;
  240. // 非15位身份证
  241. if (idcard.length() != 15) {
  242. return null;
  243. }
  244. if (isDigital(idcard)) {
  245. // 获取出生年月日
  246. String birthday = idcard.substring(6, 12);
  247. Date birthdate = null;
  248. try {
  249. birthdate = new SimpleDateFormat("yyMMdd").parse(birthday);
  250. } catch (ParseException e) {
  251. e.printStackTrace();
  252. }
  253. Calendar cday = Calendar.getInstance();
  254. cday.setTime(birthdate);
  255. String year = String.valueOf(cday.get(Calendar.YEAR));
  256. idcard17 = idcard.substring(0, 6) + year + idcard.substring(8);
  257. char c[] = idcard17.toCharArray();
  258. String checkCode = "";
  259. if (null != c) {
  260. int bit[] = new int[idcard17.length()];
  261. // 将字符数组转为整型数组
  262. bit = converCharToInt(c);
  263. int sum17 = 0;
  264. sum17 = getPowerSum(bit);
  265. // 获取和值与11取模得到余数进行校验码
  266. checkCode = getCheckCodeBySum(sum17);
  267. // 获取不到校验位
  268. if (null == checkCode) {
  269. return null;
  270. }
  271. // 将前17位与第18位校验码拼接
  272. idcard17 += checkCode;
  273. }
  274. } else { // 身份证包含数字
  275. return null;
  276. }
  277. return idcard17;
  278. }
  279. /**
  280. * 15位和18位身份证号码的基本数字和位数验校
  281. *
  282. * @param idcard
  283. * @return
  284. */
  285. public boolean isIdcard(String idcard) {
  286. return idcard == null || "".equals(idcard) ? false : Pattern.matches(
  287. "(^\\d{15}$)|(\\d{17}(?:\\d|x|X)$)", idcard);
  288. }
  289. /**
  290. * 15位身份证号码的基本数字和位数验校
  291. *
  292. * @param idcard
  293. * @return
  294. */
  295. public boolean is15Idcard(String idcard) {
  296. return idcard == null || "".equals(idcard) ? false : Pattern.matches(
  297. "^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$",
  298. idcard);
  299. }
  300. /**
  301. * 18位身份证号码的基本数字和位数验校
  302. *
  303. * @param idcard
  304. * @return
  305. */
  306. public boolean is18Idcard(String idcard) {
  307. return Pattern
  308. .matches(
  309. "^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([\\d|x|X]{1})$",
  310. idcard);
  311. }
  312. /**
  313. * 数字验证
  314. *
  315. * @param str
  316. * @return
  317. */
  318. public boolean isDigital(String str) {
  319. return str == null || "".equals(str) ? false : str.matches("^[0-9]*$");
  320. }
  321. /**
  322. * 将身份证的每位和对应位的加权因子相乘之后,再得到和值
  323. *
  324. * @param bit
  325. * @return
  326. */
  327. public int getPowerSum(int[] bit) {
  328. int sum = 0;
  329. if (power.length != bit.length) {
  330. return sum;
  331. }
  332. for (int i = 0; i < bit.length; i++) {
  333. for (int j = 0; j < power.length; j++) {
  334. if (i == j) {
  335. sum = sum + bit[i] * power[j];
  336. }
  337. }
  338. }
  339. return sum;
  340. }
  341. /**
  342. * 将和值与11取模得到余数进行校验码判断
  343. *
  344. * @param checkCode
  345. * @param sum17
  346. * @return 校验位
  347. */
  348. public String getCheckCodeBySum(int sum17) {
  349. String checkCode = null;
  350. switch (sum17 % 11) {
  351. case 10:
  352. checkCode = "2";
  353. break;
  354. case 9:
  355. checkCode = "3";
  356. break;
  357. case 8:
  358. checkCode = "4";
  359. break;
  360. case 7:
  361. checkCode = "5";
  362. break;
  363. case 6:
  364. checkCode = "6";
  365. break;
  366. case 5:
  367. checkCode = "7";
  368. break;
  369. case 4:
  370. checkCode = "8";
  371. break;
  372. case 3:
  373. checkCode = "9";
  374. break;
  375. case 2:
  376. checkCode = "x";
  377. break;
  378. case 1:
  379. checkCode = "0";
  380. break;
  381. case 0:
  382. checkCode = "1";
  383. break;
  384. }
  385. return checkCode;
  386. }
  387. /**
  388. * 将字符数组转为整型数组
  389. *
  390. * @param c
  391. * @return
  392. * @throws NumberFormatException
  393. */
  394. public int[] converCharToInt(char[] c) throws NumberFormatException {
  395. int[] a = new int[c.length];
  396. int k = 0;
  397. for (char temp : c) {
  398. a[k++] = Integer.parseInt(String.valueOf(temp));
  399. }
  400. return a;
  401. }
  402. public static void main(String[] args) throws Exception {
  403. String idcard15 = "123456789101234";//15位
  404. String idcard18 = "123456789101234567";//18位
  405. IdcardValidator iv = new IdcardValidator();
  406. System.out.println(iv.isValidatedAllIdcard(idcard15));
  407. System.out.println(iv.isValidatedAllIdcard(idcard18));
  408. System.out.println(iv.toString());
  409. }
  410. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/690966
推荐阅读
相关标签
  

闽ICP备14008679号