私はこの方法は文字列全体の先頭に文字を挿入している、各部分の先頭に文字を挿入しようとする代わりの部分文字列の位置0に挿入しています。例:のStringBuilder insertメソッド
Input: esttar apple%hc orange%hc annanabar eachpar
Expected output: test apple orange banana peach
Actual output: pbtest apple orange anana each
すべては、StringBuilderの挿入メソッドのほかに意図どおりに機能します。私のコードは以下の通りです。事前に多くの時間を感謝します。
private String decryptText(String encrypted, String cipher){
StringBuilder stringBuilder = new StringBuilder(); //for manipulating the substrings
StringBuilder builder2 = new StringBuilder(); //StringBuilder object for returning and accumulating instances of decrypted
String decryptedSS = "";
cipher = cipher.replaceAll("-", ""); //replaces all the hyphens
char[] cipherKey = cipher.toCharArray(); //converts the cipherKey to a character array
char y1 = cipherKey[2];
String[] strArr = encrypted.split(" "); //splits the string into an array
for(String subStr : strArr){ //for each substring in the string array
stringBuilder.append(subStr); //copies the substring into a String Builder object
stringBuilder = stringBuilder.deleteCharAt(stringBuilder.length()-1); //deletes the last character
stringBuilder = stringBuilder.deleteCharAt(stringBuilder.length()-1); //deletes the last character
char first = stringBuilder.charAt(stringBuilder.length()-1); //copies the last character for prepending to the word if the word started with a consonant
if(stringBuilder.charAt(stringBuilder.length()-1) == y1){ //if the last character is equal to y1
stringBuilder.deleteCharAt(stringBuilder.length()-1); //delete it
}
else{ //******The problem resides in this else statement
stringBuilder.deleteCharAt(stringBuilder.length()-1); //delete the last character
stringBuilder.insert(0, first); //insert the copied character at the beginning of the substring
}
stringBuilder.append(" "); //appends a space to each word
decryptedSS = stringBuilder.toString(); //converts the StringBuilder object to a string
}
builder2.append(decryptedSS); //appends the decrypted substring to the StringBuilder object to concatenate the string
String decrypted = builder2.toString(); //converts the StringBuilder object to a string
return decrypted; //returns the decrypted string
}
まだ追加していない場合は、デバッガを使用してコードを実行してください。Eclipseにはまともな機能があります。それが起こったとしてエラーをキャッチするのに役立ちます。 – Matt1776