复代码代码如下:
공개 클래스 카이사르 {
공개 정적 최종 문자열 SOURCE = "abcdefghijklmnopqrstuvwxyz";
공개 정적 최종 int LEN = SOURCE.length();
/**
* @param 인수
*/
공개 정적 무효 메인(String[] args) {
문자열 결과 = caesarEncryption("newyork");
System.out.println("암호화 결과:" + result);
System.out.println("암호해독 결과:" + caesarDecryption(result));
}
//암호화
공개 정적 문자열 caesarEncryption(String s) {
StringBuilder sb = new 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()을 반환합니다.
}
//암호해독
공개 정적 문자열 caesarDecryption(String s) {
StringBuilder sb = new 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()을 반환합니다.
}
공개 정적 부울 isAlp(String s) {
문자열 p = "^[A-Za-z]+$";
패턴 패턴 = Pattern.compile(p);
일치자 일치자 = 패턴.매처(들);
if (matcher.find()) {
사실을 반환;
}
거짓을 반환;
}
}