我制作了这个程序,它是一个随机密码。
public class SaadAbdullahCipher {
private char[] alphabet = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x',
'y', 'z'};
private String alphabetString = "abcdefghijklmnopqrstuvwxyz";
private int[] alphabetASCII = new int[alphabet.length];
private int[] cipherOne;
private int[] cipherTwo;
private String userMessage;
private int randomShiftKey;
private Formatter x;
public SaadAbdullahCipher(String uM, int rSK) {
userMessage = uM;
randomShiftKey = rSK;
cipherOne = new int[userMessage.length()];
}
public void genNewAlphabet() {
for(int i = 0; i < alphabet.length; i++) {
alphabetASCII[i] = alphabet[i] + randomShiftKey;
if(alphabetASCII[i] >= 122) {
alphabetASCII[i] = alphabetASCII[i] - 26;
}
}
}
public void cipher() {
String[] userMessageString = new String[userMessage.length()];
for(int i = 0; i < userMessage.length(); i++) {
userMessageString[i] = userMessage.substring(i, i+1);
}
for(int counterOne = 0; counterOne < userMessageString.length; counterOne++) {
cipherOne[counterOne] = alphabetString.indexOf(userMessageString[counterOne]);
}
cipherTwo = new int[alphabetASCII.length];
System.out.print("Your encoded message is: ");
for(int counterTwo = 0; counterTwo < cipherOne.length; counterTwo++) {
cipherTwo[counterTwo] = alphabetASCII[cipherOne[counterTwo]];
System.out.print((char)cipherTwo[counterTwo]);
}
}
public void printTextFile() {
try {
x = new Formatter("Cipher.txt");
}
catch(Exception bad) {
System.out.println("Your have an air er!");
}
for(int i = 0; i < cipherTwo.length; i++) {
x.format("%s", (char)cipherTwo[i]);
}
x.close();
}
public int[] getAlphabetASCII() {
return alphabetASCII;
}
}
主要的():
public class SaadAbdullahCipherTester {
public static void main(String [] args) {
Random ranNum = new Random();
Scanner input = new Scanner(System.in);
int randomShiftKey = 1 + ranNum.nextInt(24);
System.out.print("Please enter your message: ");
String userMessage = input.next();
System.out.println();
SaadAbdullahCipher test = new SaadAbdullahCipher(userMessage, randomShiftKey);
test.genNewAlphabet();
test.cipher();
test.printTextFile();
int[] randomABC = test.getAlphabetASCII();
SaadAbdullahCipherD testTwo = new SaadAbdullahCipherD(randomShiftKey, randomABC);
testTwo.openFile();
testTwo.readFile();
testTwo.closeFile();
testTwo.reverseAlphabet();
testTwo.decipher();
}
}
一切正常,但是当我打印结果时,我希望它全部以大写形式显示(例如,你好)我将在哪里添加 .toUpperCase