私のコードは、テキスト ドキュメントからテキストを取得し、各文字を 1 ずつインクリメントして暗号化することになっています。出力を次のようにしたい: qbttx (passwの暗号化)。? また、暗号化する必要があるものを保持するテキスト ドキュメントには、「passw」というテキストが含まれています。
import java.io.*;
public class EncryptionMain {
public static void main(String args[]) {
File file = new File("c:\\Visual Basic Sign in\\password.txt");
StringBuilder contents = new StringBuilder();
BufferedReader reader = null;
try {
reader = new BufferedReader(new FileReader(file));
String text = null;
// repeat until all lines is read
while ((text = reader.readLine()) != null) {
contents.append(text)
.append(System.getProperty(
"line.separator"));
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (reader != null) {
reader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
int first = 0, second = 1;
for (int i = 0; i < contents.length(); i++)
{
char[] arr = new char[7];
contents.getChars(first, second, arr, 0); // get chars 0,1 to get 1st char
char ch = arr[i];
if (ch >= 'A' && ch < 'Z') ch++;
else if (ch == 'Z') ch = 'A';
else if (ch >= 'a' && ch < 'z') ch++;
else if (ch == 'z') ch = 'a';
// show encrypted contents here
System.out.println(ch);
first++;
second++;
}
}
}