weixin_39622150的博客Is there a nicer way of converting a number to its alphabetic equivalent than this?private String getCharForNumber(int i) {char[] alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toCharArray();...
AnjneyMidha的博客展开全部for(int i = 0;i<255;i++){char a = (char) i;...},这是0到254在ASCII码中对应的字母。你可以找32313133353236313431303231363533e78988e69d8331333365643661到你想要的所有的。1、public static void...