复制番号代番号次のように:
パブリック クラス Caesar {
public static Final String SOURCE = "abcdefghijklmnopqrstuvwxyz";
public static Final int LEN = SOURCE.length();
/**
* @param 引数
*/
public static void main(String[] args) {
文字列結果 = caesarEncryption("newyork");
System.out.println("暗号化結果:" + 結果);
System.out.println("復号結果:" + caesarDecryption(result));
}
//暗号化
public static String caesarEncryption(String s) {
StringBuilder sb = 新しい StringBuilder();
if (s == null || s.length() < 1) {
System.out.println("何も入力しません。");
null を返します。
}
if (!isAlp(s)) {
System.out.println("入力 ABC... のみ");
null を返します。
}
s = s.toLowerCase();
int len = s.length();
for (int j = 0; j < len; j++) {
char c = s.charAt(j);
int a = SOURCE.indexOf(c);
if (a == LEN -1) a = -1;
if (a == LEN -2) a = -2;
if (a == LEN - 3) a = -3;
sb.append(SOURCE.charAt(a + 3));
}
sb.toString() を返します。
}
//復号化
public static String caesarDecryption(String s) {
StringBuilder sb = 新しい StringBuilder();
if (s == null || s.length() < 1) {
System.out.println("何も入力しません。");
null を返します。
}
if (!isAlp(s)) {
System.out.println("入力 ABC... のみ");
null を返します。
}
s = s.toLowerCase();
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
int a = SOURCE.indexOf(c);
if (a == 2) a = LEN + 2;
if (a == 1) a = LEN + 1;
if (a == 0) a = LEN;
sb.append(SOURCE.charAt(a - 3));
}
sb.toString() を返します。
}
public static boolean isAlp(String s) {
文字列 p = "^[A-Za-z]+$";
パターン pattern = Pattern.compile(p);
マッチャー matcher = pattern.matcher(s);
if (matcher.find()) {
true を返します。
}
false を返します。
}
}