0

0

Java实现数字日期翻译成英文单词的工具类案例分享

黄舟

黄舟

发布时间:2017-09-28 09:30:10

|

2577人浏览过

|

来源于php中文网

原创

这篇文章主要介绍了java实现将数字日期翻译成英文单词的工具类,结合完整实例形式分析了java日期转换与字符串操作相关实现技巧,需要的朋友可以参考下

本文实例讲述了Java实现将数字日期翻译成英文单词的工具类。分享给大家供大家参考,具体如下:


package com.sunyard.etp.ag.util;
import java.math.BigDecimal;
import java.util.Arrays;
public class DateEngUtil {
  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    String dd="19870401";
    String res=formatDateEng(dd);
    System.out.println(dd+",英文==="+res);
    String dd2="19000823";
    String res2=formatDateEng(dd2);
    System.out.println(dd2+",英文==="+res2);
    String dd3="20001231";
    String res3=formatDateEng(dd3);
    System.out.println(dd3+",英文==="+res3);
    String dd4="20121116";
    String res4=formatDateEng(dd4);
    System.out.println(dd4+",英文==="+res4);
    String dd5="20150901";
    String res5=formatDateEng(dd5);
    System.out.println(dd5+",英文==="+res5);
    /*
19870401,英文===nineteen eighty seven, April, first
19000823,英文===nineteen hundred, August, twenty third
20001231,英文===two thousand, December, thirty first
20121116,英文===two thousand and twelve, November, sixteenth
20150901,英文===two thousand and fifteen, September, first
     */
    //支持最多4位数字的翻译
    String nn1="12";
    String r1=translateNum9999NoZero(nn1);
    System.out.println(nn1+",英文==="+r1);
    String nn2="561";
    String r2=translateNum9999NoZero(nn2);
    System.out.println(nn2+",英文==="+r2);
    String nn3="5589";
    String r3=translateNum9999NoZero(nn3);
    System.out.println(nn3+",英文==="+r3);
    /*
12,英文===twelve
561,英文===five hundred and sixty one
5589,英文===five thousand five hundred and eighty nine
     */
    String cardNum="6210910002000718183";
    String cardn=translateCardNumber(cardNum);
    System.out.println(cardNum+",英文==="+cardn);
/*
6210910002000718183,英文=== six two one zero nine one zero zero zero two zero zero zero seven one eight one eight three
     */
    String fff="3394.56";
    System.out.println("钱"+fff+"==="+translateMoney(fff));
    String fff2="123456789123456.45";
    System.out.println("钱"+fff2+"==="+translateMoney(fff2));
    String fff3="78.00";
    System.out.println("钱"+fff3+"==="+translateMoney(fff3));
    String fff4="12000089103456.45";
    System.out.println("钱"+fff4+"==="+translateMoney(fff4));
    String fff5="123456789.12";
    System.out.println("钱"+fff5+"==="+translateMoney(fff5));
    /*
钱3394.56===three thousand, three hundred and ninety four  point five six
钱123456789123456.45===one hundred and twenty three trillion, four hundred and fifty six billion, seven hundred and eighty nine million, one hundred and twenty three thousand, four hundred and fifty six  point four five
钱78.00===seventy eight  point zero zero
钱12000089103456.45===twelve trillion, eighty nine million, one hundred and three thousand, four hundred and fifty six  point four five
钱123456789.12===one hundred and twenty three million, four hundred and fifty six thousand, seven hundred and eighty nine  point one two
     */
    String p1="0%";
    System.out.println("百分比"+p1+"==="+translatePercent(p1));
    String p2="0.0%";
    System.out.println("百分比"+p2+"==="+translatePercent(p2));
    String p3="0.00%";
    System.out.println("百分比"+p3+"==="+translatePercent(p3));
    String p4="0.23%";
    System.out.println("百分比"+p4+"==="+translatePercent(p4));
    String p5="0.05%";
    System.out.println("百分比"+p5+"==="+translatePercent(p5));
    String p6="56.00%";
    System.out.println("百分比"+p6+"==="+translatePercent(p6));
    String p7="56.67%";
    System.out.println("百分比"+p7+"==="+translatePercent(p7));
    String p8="237.90%";
    System.out.println("百分比"+p8+"==="+translatePercent(p8));
    /*
百分比0%===zero point zero zero percent
百分比0.0%===zero point zero zero percent
百分比0.00%===zero point zero zero percent
百分比0.23%=== zero  point two three percent
百分比0.05%=== zero  point zero five percent
百分比56.00%===fifty six point zero zero percent
百分比56.67%===fifty six point six seven percent
百分比237.90%===two hundred and thirty seven point nine zero percent
     */
  }
  /**
   * 格式化日期
   *
   * @return
   *
   */
  public static String formatDate(String Date){
    try{
       return Date.substring(0,4)+"年"+Date.substring(4,6)+"月"+Date.substring(6,8)+"日";
     }catch (Exception e) {
       return "";
     }
  }
  /**
   * 格式化日期转化成能播报的英文
   *
   * @return
   *
   */
  public static String formatDateEng(String Date){
    if(Date==null||Date.trim().equals("")){
      return "";
    }
    if(Date.trim().length()<8){
      return "";
    }
    String DateStr=Date.trim();
    String year=DateStr.substring(0,4);
    String month=DateStr.substring(4,6);
    String date2=DateStr.substring(6,8);
    String res="";
    res=translateYear(year)+", "+translateMonth(month)+", "+translateDate(date2);
    return res;
  }
  /**
   * 年转化成英文单词
   * @param month
   * @return
   */
  public static String translateYear(String year) {
    if (year == null || year.trim().equals("")) {
      return "";
    }
    String res = "";
    int yearNum = Integer.valueOf(year);
    if(year.endsWith("00")){//xx00
      switch (yearNum) {
      case 2000:
        res = "two thousand";//
        break;
      case 1900:
        res = "nineteen hundred";//
        break;
      case 1800:
        res = "eighteen hundred";//
        break;
      case 1700:
        res = "seventeenth hundred";//
        break;
      case 1600:
        res = "sixteenth hundred";//
        break;
      case 1500:
        res = "fifteenth hundred";//
        break;
      default:
        res = "";
      }
    }else{//19xx,20xx,21xx
      String qian2=year.substring(0, 2);
      String hou2=year.substring(2, 4);
      int qian2Num = Integer.valueOf(qian2);
      int hou2Num = Integer.valueOf(hou2);
      if(year.startsWith("20")){//20xx
        res = "two thousand and "+translateNum20wei(hou2Num);
      }else{//19xx,21xx
        res = translateNum20wei(qian2Num)+" "+translateNum20wei(hou2Num);
      }
    }
    return res;
  }
  /**
   * 月份转化成英文单词
   * @param month
   * @return
   */
  public static String translateMonth(String month) {
    if (month == null || month.trim().equals("")) {
      return "";
    }
    String res = "";
    int mon = Integer.valueOf(month);
    switch (mon) {
    case 1:
      res = "January";// Jan
      break;
    case 2:
      res = "February";// Feb
      break;
    case 3:
      res = "March";// Mar
      break;
    case 4:
      res = "April";// Apr
      break;
    case 5:
      res = "May";// May
      break;
    case 6:
      res = "June";// Jun
      break;
    case 7:
      res = "July";// Jul
      break;
    case 8:
      res = "August";// Aug
      break;
    case 9:
      res = "September";// Sep
      break;
    case 10:
      res = "October";// Oct
      break;
    case 11:
      res = "November";// Nov
      break;
    case 12:
      res = "December";// Dec
      break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 几号转化成英文单词
   * @param date
   * @return
   */
  public static String translateDate(String date) {
    if (date == null || date.trim().equals("")) {
      return "";
    }
    String res = "";
    int dateNum = Integer.valueOf(date);
    switch (dateNum) {
    case 1:
      res = "first";//
      break;
    case 2:
      res = "second";//
      break;
    case 3:
      res = "third";//
      break;
    case 4:
      res = "fourth";//
      break;
    case 5:
      res = "fifth";//
      break;
    case 6:
      res = "sixth";//
      break;
    case 7:
      res = "seventh";//
      break;
    case 8:
      res = "eigth";//
      break;
    case 9:
      res = "ninth";//
      break;
    case 10:
      res = "tenth";//
      break;
    case 11:
      res = "eleventh";//
      break;
    case 12:
      res = "twelfth";//
      break;
    case 13:
      res = "thirteenth";//
      break;
    case 14:
      res = "fourteenth";//
      break;
    case 15:
      res = "fifteenth";//
      break;
    case 16:
      res = "sixteenth";//
      break;
    case 17:
      res = "seventeenth";//
      break;
    case 18:
      res = "eighteenth";//
      break;
    case 19:
      res = "nineteenth";//
      break;
    case 20:
      res = "twentieth";//
      break;
    case 21:
      res = "twenty first";//
      break;
    case 22:
      res = "twenty second";//
      break;
    case 23:
      res = "twenty third";//
      break;
    case 24:
      res = "twenty fourth";//
      break;
    case 25:
      res = "twenty fifth";//
      break;
    case 26:
      res = "twenty sixth";//
      break;
    case 27:
      res = "twenty seventh";//
      break;
    case 28:
      res = "twenty eigth";//
      break;
    case 29:
      res = "twenty ninth";//
      break;
    case 30:
      res = "thirtieth";//
      break;
    case 31:
      res = "thirty first";//
      break;
    default:
      res = "";
    }
    return res;
  }
  /////////////////
  /**
   * 翻译1-19
   * @param num
   * @return
   */
  public static String translateNum19(int num){
    String res = "";
    switch (num) {
    case 0:res = " ";break;
    case 1:res = "one";break;
    case 2:res = "two";break;
    case 3:res = "three";break;
    case 4:res = "four";break;
    case 5:res = "five";break;
    case 6:res = "six";break;
    case 7:res = "seven";break;
    case 8:res = "eight";break;
    case 9:res = "nine";break;
    case 10:res = "ten";break;
    case 11:res = "eleven";break;
    case 12:res = "twelve";break;
    case 13:res = "thirteen";break;
    case 14:res = "fourteen";break;
    case 15:res = "fifteen";break;
    case 16:res = "sixteen";break;
    case 17:res = "seventeen";break;
    case 18:res = "eighteen";break;
    case 19:res = "nineteen";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 翻译十几,二十几的读法
   * @param num
   * @return
   */
  public static String translateNum2090(int num){
    String res = "";
    switch (num) {
    case 20:res = "twenty";break;
    case 30:res = "thirty";break;
    case 40:res = "forty";break;
    case 50:res = "fifty";break;
    case 60:res = "sixty";break;
    case 70:res = "seventy";break;
    case 80:res = "eighty";break;
    case 90:res = "ninety";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 翻译2位数字的读法
   * @param num
   * @return
   */
  public static String translateNum20wei(int num){
    String res = "";
    int zheng=num/10;//十位
    int yu=num%10;//个位
    if(num<20){
      if(num<10){
        res="zero"+translateNum19(num);
      }else{
        res=translateNum19(num);
      }
    }else{
      res=translateNum2090(zheng*10)+" "+translateNum19(yu);
    }
    return res;
  }
  /**
   * 翻译2位数字的读法
   * @param num
   * @return
   */
  public static String translateNum20weiNoZero(int num){
    String res = "";
    int zheng=num/10;//十位
    int yu=num%10;//个位
    if(num<20){
      res=translateNum19(num);
    }else{
      res=translateNum2090(zheng*10)+" "+translateNum19(yu);
    }
    return res;
  }
  /**
   * 翻译数字的读法,最多支持到9999,即4位
   * @param num
   * @return
   */
  public static String translateNum9999NoZero(int num){
    String res = "";
    int qian=num/1000;//千位
    int last3=num%1000;
    int bai=last3/100;//百位
    int last2=num%100;
    int shi=last2/10;//十位
    int ge=num%10;//个位
    if(qian!=0){
      res+=translateNum19(qian)+" thousand ";
    }
    if(bai!=0){
      res+=translateNum19(bai)+" hundred ";
    }
    String last2eng=translateNum20weiNoZero(last2);
    if(!res.equals("")&&!(last2eng.trim().equals(""))){
      res+=" and ";
    }
    res+=last2eng+" ";
    return res;
  }
  public static String translateNum9999NoZero(String num){
    if(num==null||num.trim().equals("")){
      return "";
    }
    int nn=Integer.valueOf(num);
    return translateNum9999NoZero(nn);
  }
  ////////////////////////////////////////下面是英文数字的直白读法,应用场景:卡号/////////////////////////////
  /**
   * 翻译0123456789
   * @param num
   * @return
   */
  public static String translateNum09(int num){
    String res = "";
    switch (num) {
    case 0:res = "zero";break;
    case 1:res = "one";break;
    case 2:res = "two";break;
    case 3:res = "three";break;
    case 4:res = "four";break;
    case 5:res = "five";break;
    case 6:res = "six";break;
    case 7:res = "seven";break;
    case 8:res = "eight";break;
    case 9:res = "nine";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 把卡号翻译成英文单词。
   * 参数是已传数字,不能有任何其他字符
   * @param number
   * @return
   */
  public static String translateCardNumber(String number){
    if(number==null||number.trim().equals("")){
      return "";
    }
    String res = "";
    String numstr=number.trim();
    char[] numArr=numstr.toCharArray();
    for(int i=0;i15){
      return "";
    }
    String res = "";
    String moneyStr=moneyStr1.trim();
    String[] moneyArr=getThreeArr(moneyStr);
    if(moneyArr[0]!=null&&!moneyArr[0].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[0].trim())+" trillion, ";
    }
    if(moneyArr[1]!=null&&!moneyArr[1].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[1].trim())+" billion, ";
    }
    if(moneyArr[2]!=null&&!moneyArr[2].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[2].trim())+" million, ";
    }
    if(moneyArr[3]!=null&&!moneyArr[3].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[3].trim())+" thousand, ";
    }
    if(moneyArr[4]!=null&&!moneyArr[4].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[4].trim())+" ";
    }
    return res;
  }
  //翻译小数点后面的数字,其实就是按位直接翻译单个数字即可。
  public static String translateMoney2(String moneyStr2){
    return translateCardNumber(moneyStr2);
  }
  /**
   *
例如
12345678
要得到
12 345 678
=============
算法如下:
先反序
87654321
从前往后3位截取
876 543 21
每个再反序
678 345 12
这个数组要反序,这就是要的结果
12 345 678
   * @param number
   * @return
   */
  public static String[] getThreeArr(String number){
    if(number==null||number.trim().equals("")){
      return null;
    }
    String[] res= new String [5];
    BigDecimal dd=new BigDecimal("0");
    BigDecimal bd1000=new BigDecimal("1000");
//   dd.pideAndRemainder(pisor)
    try{
      dd=new BigDecimal(number.trim());//123,456,789,222,555
      BigDecimal dd30=dd.pideAndRemainder(bd1000)[1];//3wei,555(0是整数,1是余数)
      BigDecimal dd2=dd.pideAndRemainder(bd1000)[0];//123,456,789,222
      BigDecimal dd64=dd2.pideAndRemainder(bd1000)[1];//thousand,222
      BigDecimal dd3=dd2.pideAndRemainder(bd1000)[0];//123,456,789(0是整数,1是余数)
      BigDecimal dd97=dd3.pideAndRemainder(bd1000)[1];//million,789
      BigDecimal dd4=dd3.pideAndRemainder(bd1000)[0];////123,456
      BigDecimal dd1210=dd4.pideAndRemainder(bd1000)[1];//billion,456
      BigDecimal dd5=dd4.pideAndRemainder(bd1000)[0];////123
      BigDecimal dd1513=dd5.pideAndRemainder(bd1000)[1];//trillion,123
      res[0]=dd1513.toString();
      res[1]=dd1210.toString();
      res[2]=dd97.toString();
      res[3]=dd64.toString();
      res[4]=dd30.toString();
      for(int i=0;i=0;i--){
      strre+=String.valueOf(str2.charAt(i));//反序后
    }
    return strre;
  }
  /////////////////////////////翻译百分比,例如12.12%///////////////////////////////////////
  /**
   * 翻译百分比,后面必须带有%
   *
   */
  public static String translatePercent(String percentNum){
    if(percentNum==null||percentNum.trim().equals("")||!(percentNum.trim().endsWith("%"))){
      return "";
    }
    String res = "";
    String percent=percentNum.trim().substring(0, percentNum.indexOf("%"));
    String percent1="";
    String percent2="";
    if(percent.indexOf(".")!=-1){//有小数点
      percent1=percent.trim().substring(0, percent.indexOf("."));
      percent2=percent.trim().substring(percent.indexOf(".")+1);
    }else{
      percent1=percent;
      percent2="";
    }
    double nu=Double.valueOf(percent);
    if(nu==0){
      res="zero point zero zero percent";
    }else{
      double nu2=Double.valueOf(percent1);
      if(nu2==0){
        res+=" zero ";
      }
      res+=translateNum9999NoZero(percent1)+" point "+translateCardNumber(percent2)+" percent ";
    }
    return res;
  }
}

运行结果:

MyMap AI
MyMap AI

使用AI将想法转化为图表

下载

相关文章

java速学教程(入门到精通)
java速学教程(入门到精通)

java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

相关标签:

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
go语言 注释编码
go语言 注释编码

本专题整合了go语言注释、注释规范等等内容,阅读专题下面的文章了解更多详细内容。

2

2026.01.31

go语言 math包
go语言 math包

本专题整合了go语言math包相关内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

go语言输入函数
go语言输入函数

本专题整合了go语言输入相关教程内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

golang 循环遍历
golang 循环遍历

本专题整合了golang循环遍历相关教程,阅读专题下面的文章了解更多详细内容。

0

2026.01.31

Golang人工智能合集
Golang人工智能合集

本专题整合了Golang人工智能相关内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

2026赚钱平台入口大全
2026赚钱平台入口大全

2026年最新赚钱平台入口汇总,涵盖任务众包、内容创作、电商运营、技能变现等多类正规渠道,助你轻松开启副业增收之路。阅读专题下面的文章了解更多详细内容。

76

2026.01.31

高干文在线阅读网站大全
高干文在线阅读网站大全

汇集热门1v1高干文免费阅读资源,涵盖都市言情、京味大院、军旅高干等经典题材,情节紧凑、人物鲜明。阅读专题下面的文章了解更多详细内容。

73

2026.01.31

无需付费的漫画app大全
无需付费的漫画app大全

想找真正免费又无套路的漫画App?本合集精选多款永久免费、资源丰富、无广告干扰的优质漫画应用,涵盖国漫、日漫、韩漫及经典老番,满足各类阅读需求。阅读专题下面的文章了解更多详细内容。

67

2026.01.31

漫画免费在线观看地址大全
漫画免费在线观看地址大全

想找免费又资源丰富的漫画网站?本合集精选2025-2026年热门平台,涵盖国漫、日漫、韩漫等多类型作品,支持高清流畅阅读与离线缓存。阅读专题下面的文章了解更多详细内容。

19

2026.01.31

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Kotlin 教程
Kotlin 教程

共23课时 | 3.1万人学习

C# 教程
C# 教程

共94课时 | 8.1万人学习

Java 教程
Java 教程

共578课时 | 54.4万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号