有時候,可能需要獲取a~z、A~Z組成的26個字母的字符串,這篇文章介紹一種簡單的方法。
只需要幾句簡單到不能再簡單的代碼!你不會還在傻傻地一個個字母敲吧~
/*** @author heyunlin* @version 1.0*/
public class Example {/*** 小寫字母*/private static final StringBuilder LOWER_LETTERS;/*** 大寫字母*/private static final StringBuilder UPPER_LETTERS;static {LOWER_LETTERS = new StringBuilder();UPPER_LETTERS = new StringBuilder();for (int i = 97; i < 122; i++) {char letter = (char) i;LOWER_LETTERS.append(letter);}for (int j = 65; j < 91; j++) {char letter = (char) j;UPPER_LETTERS.append(letter);}}public static void main(String[] args) {System.out.println(LOWER_LETTERS);System.out.println(UPPER_LETTERS);}}
程序運行結果