我正在開發一個應用程序,其中從服務器下載的文件被加密。在應用程序中,我試圖打開存儲在內部存儲,以解密加密文件:java.io.StreamCorruptedException - Android
ObjectInputStream ois = new ObjectInputStream(new CipherInputStream(context.openFileInput("filename"), cipher));
String result = (String) ois.readObject();
但是,讓一個例外:
java.io.StreamCorruptedException
什麼這個錯誤是否意味着在這種情況下,以及如何解決它?
謝謝。