자바 금액 변환아라비아 숫자 를 중국 대문자 로 바꾸다
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
* :
* 1. , 。
* 2. IO BufferedReader 。
* 3. , 。
* 4. , ,
* 。
* 5. 。
*/
public class MoneyConvert {
//
static String[] cnNumTab = {" ", " ", " ", " ", " ", " ", " ", " "," ", " "};
static String[] integerUnitTab = {"", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "};
static String[] decimalUnitTab = {" ", " ", " "};
public static void main(String[] args) {
System.out.println(" :");
// ,
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
try {
//
String str = in.readLine();
String[] strArr = str.split("\\.");
//
char[] chNumArrInteger = strArr[0].toCharArray();
//
String[] convertIntegerNum = convertUpper(chNumArrInteger);
//
StringBuilder container = new StringBuilder(" ");
//
for(int x = convertIntegerNum.length -1, y = 0; x >=0; x--, y++) {
String num = convertIntegerNum[x];
if(num.equals(" ")) {
// ,
if(y == 4 || y == 8)
container.insert(0, num+integerUnitTab[y]);
else
container.insert(0, num);
} else {
container.insert(0, num+integerUnitTab[y]);
}
}
// ,
if(strArr.length == 2) {
int len = container.length();
container.replace(len - 2, len, " ");
char[] chNumArrDecimal = strArr[1].toCharArray();
String[] convertDecimalNum = convertUpper(chNumArrDecimal);
//
for (int x = 0; x < convertDecimalNum.length; x++) {
container.append(convertDecimalNum[x]+decimalUnitTab[x]);
}
}
//
String put = container.toString();
put = put.replaceAll(" + ", " ");
put = put.replaceAll(" + ", " ");
put = put.replaceAll(" + ", " ");
put = put.replaceAll(" + ", " ");
put = put.replaceAll(" +", " ");
put = put.replaceAll(" ", " ");
put = put.replaceAll(" ", " ");
put = put.replaceAll(" ", " ");
put = put.replaceAll(" ", " ");
//
System.out.println(" :"+put);
} catch (NumberFormatException e) {
System.out.println(" , ");
} catch (IOException e) {
e.printStackTrace();
}
// ,
}
//
public static String[] convertUpper(char[] arr) {
String[] convertNum = new String[arr.length];
for(int x = 0; x < arr.length; x++) {
int num = Integer.parseInt(arr[x]+"");
convertNum[x] = cnNumTab[num];
}
return convertNum;
}
}
방법 이 좀 번 거 로 운 것 같 습 니 다. 아직 공부 중 입 니 다. 잘 쓰 지 못 했 을 수도 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.