자바 아라비아 숫자 소문 자 변환 중국어 대문자
4237 단어 자바
package com.test;
import java.math.BigDecimal;
import java.text.NumberFormat;
/**
*
* @author zxb
*
* :120023.235---->>>>>>>>
*
*/
public class MoneyToChinese {
public static void main(String[] args) {
double d =30000000034.895d;
try {
System.out.println(toChineseCharacter(d));
} catch (Exception e) {
e.printStackTrace();
}
}
/**
*
* @param money
* @return
* @throws Exception
*/
public static String toChineseCharacter(double money) throws Exception {
double temp = 0;
long l = Math.abs((long) money);
BigDecimal bil = new BigDecimal(l);
if (bil.toString().length() > 14) {
throw new Exception(" , !");
}
NumberFormat nf = NumberFormat.getInstance();
nf.setMaximumFractionDigits(2);
int i = 0;
String result = "", sign = "", tempStr = "", temp1 = "";
String[] arr = null;
sign = money < 0 ? " " : "";
temp = Math.abs(money);
if (l == temp) {
result = doForEach(new BigDecimal(temp).multiply(new BigDecimal(100)).toString(),
sign);
} else {
nf.setMaximumFractionDigits(2);
temp1 = nf.format(temp);
arr = temp1.split(",");
while (i < arr.length) {
tempStr += arr[i];
i++;
}
BigDecimal b = new BigDecimal(tempStr);
b = b.multiply(new BigDecimal(100));
tempStr=b.toString();
if(tempStr.indexOf(".")==tempStr.length()-3){
result = doForEach(tempStr.substring(0,
tempStr.length() - 3), sign);
}else{
result = doForEach(tempStr.substring(0,
tempStr.length() - 3)+"0", sign);
}
}
return result;
}
/**
*
* @param result
* @param sign
* @return
*/
public static String doForEach(String result, String sign) {
//System.out.println(" :" + result);
String flag = "", b_string = "";
String[] arr = { " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ",
" ", " ", " ", " ", " " };
String[] arr1 = { " ", " ", " ", " ", " ", " ", " ", " ", " " };
boolean zero = true;
int len = 0, i = 0, z_count = 0;
if (result == null) {
len = 0;
} else {
len = result.length();
}
while (i < len) {
flag = result.substring(i, i + 1);
i++;
if (flag.equals("0")) {
if (len - i == 10 || len - i == 6 || len - i == 2 || len == i) {
if (zero) {
b_string = b_string.substring(0,
(b_string.length()) - 1);
zero = false;
}
if (len - i == 10) {
b_string = b_string + " ";
}
if (len - i == 6) {
if (!"0".equals(result.substring(i + 1, i + 2))) {
b_string = b_string + " ";
}
}
if (len - i == 2) {
b_string = b_string + " ";
}
if (len == i) {
b_string = b_string + " ";
}
z_count = 0;
} else {
if (z_count == 0) {
b_string = b_string + " ";
zero = true;
}
z_count = z_count + 1;
}
} else {
b_string = b_string + arr1[Integer.parseInt(flag) - 1]
+ arr[len - i];
z_count = 0;
zero = false;
}
}
b_string = sign + b_string;
return b_string;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.