有一个业务需求,只给5位编码,数字与大写英文字母不限,要求给出尽量多的不同编码。
在网上找了几篇文章,发现都不完善,不能用。一来感叹之前作者不负责,二来感叹为啥这么简单通用的东西竟然没有现成的。
于是自己CODE一份可用的JAVA代码,供大家使用。直接贴完整代码如下。
import java.util.HashMap;
/**
* 36进制与10进制转换思路: 1、创建HashMap类型对象用于存放数字'0'到字母'Z'36个字符值键对
* 2. 对值模除取余计算,递归调用
*
* @author xiucai.yao
*
*/
public class Ten2ThirtySix {
// 定义36进制数字
private static final String X36 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
// 拿到36进制转换10进制的值键对
private static HashMap<Character, Integer> thirtysixToTen = createMapThirtysixToTen();
// 拿到10进制转换36进制的值键对
private static HashMap<Integer, Character> tenToThirtysix = createMapTenToThirtysix();
// 定义静态进制数
private static int BASE = 36;
private static HashMap<Character, Integer> createMapThirtysixToTen() {
HashMap<Character, Integer> map = new HashMap<Character, Integer>();
for (int i = 0; i < X36.length(); i++) {
// 0--0,... ..., Z -- 35的对应存放进去
map.put(X36.charAt(i), i);
}
return map;
}
private static HashMap<Integer, Character> createMapTenToThirtysix() {
HashMap<Integer, Character> map = new HashMap<Integer, Character>();
for (int i = 0; i < X36.length(); i++) {
// 0--0,... ..., 35 -- Z的对应存放进去
map.put(i, X36.charAt(i));
}
return map;
}
/**
* 36 to 10
*
* @param pStr
* 36进制字符串
* @return 十进制
*/
public static int ThirtysixToDeciaml(String pStr) {
if (pStr == "")
return 0;
// 目标十进制数初始化为0
int deciaml = 0;
// 记录次方,初始为36进制长度 -1
int power = pStr.length() - 1;
// 将36进制字符串转换成char[]
char[] keys = pStr.toCharArray();
for (int i = 0; i < pStr.length(); i++) {
// 拿到36进制对应的10进制数
int value = thirtysixToTen.get(keys[i]);
deciaml = (int) (deciaml + value * Math.pow(BASE, power));
// 执行完毕 次方自减
power--;
}
return deciaml;
}
/**
* 10 to 36
*
* @param iSrc
* 10进制整数值
* @param pRet
* 将iSrc转换成36进制以后的字符串
* @return 0成功,其他失败
*/
public static int DeciamlToThirtySix(int iSrc, String pRet) {
String str = DeciamlToThirtySix(iSrc);
if (str.equals(pRet)) {
return 0;
} else {
return 1;
}
}
/**
* 用递归来实现10 to 36
*
* @param iSrc
* @return
*/
public static String DeciamlToThirtySix(int iSrc) {
String result = "";
int key;
int value;
key = iSrc / BASE;
value = iSrc - key * BASE;
if (key != 0) {
result = result + DeciamlToThirtySix(key);
}
result = result + tenToThirtysix.get(value).toString();
return result;
}
public static void main(String[] args) {
int x = ThirtysixToDeciaml("7VW");
System.out.println(x);
String s = DeciamlToThirtySix(10220);
System.out.println(s);
}
}
版权声明:本文为xiucaiyao原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。