MS Office Word 2010 ファイル (.docx) から読み取り、それをいじってから、新しいファイルに書き込みます。追加する唯一の文字は、ほとんどのキーボードにある文字 (文字、数字、句読点など) で、既存の文字も少し移動しています。
StreamReader sr = new StreamReader(File.OpenRead("fs.docx"));
string foo = sr.ReadToEnd();
sr.Close();
string foo2 = EncryptFile(foo);
StreamWriter sw = new StreamWriter(File.Create("sal.docx"));
sw.Write(foo2); // THIS IS WHERE THE EXCEPTION HAPPENS
sw.Close();
foo = DecryptFile(foo2);
StreamWriter sww = new StreamWriter(File.Create("sal2.docx"));
sww.Write(foo);
sww.Close();
public static string Salt(string Input)
{
Random rand = new Random();
string Output = "";
string BigSalt = "";
int SaltIncrement = rand.Next(4, 8);
for (int i = 0; i < 10; i++) {
BigSalt += FindCipherPlainText.Substring(rand.Next(0, FindCipherPlainText.Length), 1);
}
Input = BigSalt + Input;
for (int i = Input.Length; i >= 0; i--) {
if ((decimal)i % SaltIncrement == 0) {
Input = Input.Insert(i, FindCipherPlainText.Substring(rand.Next(0, FindCipherPlainText.Length), 1));
}
}
Input += FindCipherPlainText.Substring(rand.Next(0, FindCipherPlainText.Length), 1);
Input = ((SaltIncrement + 2) * 8).ToString().Substring(1, 1) + Input + ((SaltIncrement + 2) * 8).ToString().Substring(0, 1) + rand.Next(0, 10).ToString();
return Input;
}
public static string Mix(string Input) {
string Output = "";
if (Input.Length > 1)
{
if (Input.Length % 2 == 0)
{
Output = Input.Substring(Input.Length / 2);
Output += Input.Substring(0, Input.Length / 2);
}
else
{
Output = Input.Substring((Input.Length - 1) / 2);
Output += Input.Substring(0, (Input.Length - 1) / 2);
}
}
else {
return Input;
}
return Output;
}
public static string Shift(string Input) {
string Output = "";
bool Found = false;
for (int i = 0; i < Input.Length; i++) {
Found = false;
for (int ii = 0; ii < FindCipherPlainText.Length; ii++) {
if (Input.Substring(i, 1) == FindCipherPlainText.Substring(ii, 1)) {
Output = Output.Insert(0, ReplaceCipherPlainText.Substring(ii, 1));
Found = true;
break;
}
}
if (!Found) {
Output = Output.Insert(0, Input.Substring(i, 1));
}
}
return Output;
}
public static string EncryptFile(string Input) {
return Mix( Salt( Shift( Mix( Input))));
}
System.Text.EncoderFallbackException was unhandled
Message=Unable to translate Unicode character \uDF23 at index 428 to specified code page.
Source=mscorlib
Index=428
これは私のコードであり、いくつかの例外の詳細です。EncryptFile() と DecryptFile() が何をするか、文字を追加し、それらを移動することを上で説明しました...なぜこれが起こっているのか誰にも分かりますか?