热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

javacipheroutputstream解密到对象_Java:使用DES解密对象时发生StreamCorruptedException...

我有两种方法来从Android内部存储中的文件进行加密保存和解密加载对象。加密和保存过程已完成,没有任何问题,但是当我要加载对象StreamCorrup

我有两种方法来从Android内部存储中的文件进行加密保存和解密加载对象。

加密和保存过程已完成,没有任何问题,但是当我要加载对象StreamCorruptedException时,inputStream = new

ObjectInputStream(cipherInputStream);

我搜索的次数越来越多,但没有找到解决问题的方法。所有其他解决方案都是为了延长插座寿命或类似的。

我的代码如下:

private static byte[] iv = { (byte) 0xB1, (byte) 0x15, (byte) 0xB5,

(byte) 0xB7, (byte) 0x66, (byte) 0x43, (byte) 0x2F, (byte) 0xA4,

(byte) 0xB1, (byte) 0x15, (byte) 0x35, (byte) 0xC7, (byte) 0x66,

(byte) 0x58, (byte) 0x2F, (byte) 0x5F };

保存方法:(工作正常)

private static String saveToFile(Serializable object, String fileName,

Context ctx) {

try {

Cipher cipher = null;

cipher = Cipher.getInstance("DES");

SecretKey key = KeyGenerator.getInstance("DES").generateKey();

AlgorithmParameterSpec paramSpec = new IvParameterSpec(iv);

cipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);

SealedObject sealedObject = null;

sealedObject = new SealedObject(object, cipher);

CipherOutputStream cipherOutputStream = null;

FileOutputStream fos = ctx.openFileOutput(fileName,

Context.MODE_PRIVATE);

cipherOutputStream = new CipherOutputStream(

new BufferedOutputStream(fos), cipher);

ObjectOutputStream outputStream = null;

outputStream = new ObjectOutputStream(cipherOutputStream);

outputStream.writeObject(sealedObject);

outputStream.close();

return "Save Complete!";

} catch (IOException e) {

e.printStackTrace();

return e.getMessage();

} catch (NoSuchAlgorithmException e) {

e.printStackTrace();

return e.getMessage();

} catch (NoSuchPaddingException e) {

e.printStackTrace();

return e.getMessage();

} catch (InvalidKeyException e) {

e.printStackTrace();

return e.getMessage();

} catch (IllegalBlockSizeException e) {

e.printStackTrace();

return e.getMessage();

} catch (InvalidAlgorithmParameterException e) {

e.printStackTrace();

return e.getMessage();

}

}

加载方法:(无法从中加载对象cipherInputStream)

private static Serializable loadFromFile(String fileName, Context ctx) {

Cipher cipher = null;

Serializable userList = null;

try {

cipher = Cipher.getInstance("DES");

// Code to write your object to file

SecretKey key = KeyGenerator.getInstance("DES").generateKey();

AlgorithmParameterSpec paramSpec = new IvParameterSpec(iv);

cipher.init(Cipher.DECRYPT_MODE, key, paramSpec);

CipherInputStream cipherInputStream = null;

FileInputStream fos = ctx.openFileInput(fileName);

cipherInputStream = new CipherInputStream(new BufferedInputStream(

fos), cipher);

ObjectInputStream inputStream = null;

inputStream = new ObjectInputStream(cipherInputStream);

// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

SealedObject sealedObject = null;

sealedObject = (SealedObject) inputStream.readObject();

userList = (Serializable) sealedObject.getObject(cipher);

inputStream.close();

} catch (NoSuchAlgorithmException e) {

e.printStackTrace();

return e.getMessage();

} catch (NoSuchPaddingException e) {

e.printStackTrace();

return e.getMessage();

} catch (InvalidKeyException e) {

e.printStackTrace();

return e.getMessage();

} catch (InvalidAlgorithmParameterException e) {

e.printStackTrace();

return e.getMessage();

} catch (FileNotFoundException e) {

e.printStackTrace();

return e.getMessage();

} catch (StreamCorruptedException e) {

e.printStackTrace();

return e.getMessage();

} catch (IOException e) {

e.printStackTrace();

return e.getMessage();

} catch (ClassNotFoundException e) {

e.printStackTrace();

return e.getMessage();

} catch (IllegalBlockSizeException e) {

e.printStackTrace();

return e.getMessage();

} catch (BadPaddingException e) {

e.printStackTrace();

return e.getMessage();

}

return userList;

}

公开的保存和加载方法:

public Serializable loadPlayer(Context ctx) {

return loadFromFile("player.dat", ctx);

}

public String savePlayer(Player player, Context ctx) {

return saveToFile(player, "player.dat", ctx);

}



推荐阅读
  • 近期在研究Java IO流技术时,遇到了一个关于如何正确读取Doc文档而不出现乱码的问题。本文将详细介绍使用Apache POI库处理Doc和Docx文件的具体方法,包括必要的库引入和示例代码。 ... [详细]
  • SpringBoot底层注解用法及原理
    2.1、组件添加1、Configuration基本使用Full模式与Lite模式示例最佳实战配置类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断配置类组 ... [详细]
  • 深入解析轻量级数据库 SQL Server Express LocalDB
    本文详细介绍了 SQL Server Express LocalDB,这是一种轻量级的本地 T-SQL 数据库解决方案,特别适合开发环境使用。文章还探讨了 LocalDB 与其他轻量级数据库的对比,并提供了安装和连接 LocalDB 的步骤。 ... [详细]
  • 本文详细介绍了Oracle RMAN中的增量备份机制,重点解析了差异增量和累积增量备份的概念及其在不同Oracle版本中的实现。通过对比两种备份方式的特点,帮助读者选择合适的备份策略。 ... [详细]
  • 本文介绍了如何通过创建自定义 XML 文件来修改 Android 中 Spinner 的项样式,包括颜色和大小的调整。 ... [详细]
  • 本文探讨了如何利用 Android 的 Movie 类来展示 GIF 动画,并详细介绍了调整 GIF 尺寸以适应不同布局的方法。同时,提供了相关的代码示例和注意事项。 ... [详细]
  • 一、使用Microsoft.Office.Interop.Excel.DLL需要安装Office代码如下:2publicstaticboolExportExcel(S ... [详细]
  • 使用Python构建网页版图像编辑器
    本文详细介绍了一款基于Python开发的网页版图像编辑工具,具备多种图像处理功能,如黑白转换、铅笔素描效果等。 ... [详细]
  • 本文探讨了Java中有效停止线程的多种方法,包括使用标志位、中断机制及处理阻塞I/O操作等,旨在帮助开发者避免使用已废弃的危险方法,确保线程安全和程序稳定性。 ... [详细]
  • 2022年4月15日的算法练习题,包括最长公共子序列和线段树的应用。 ... [详细]
  • 本文详细介绍了Golang中string类型的内部结构及其特性,包括字符串的定义、表示方式、数据结构以及相关的操作方法,如字符串拼接和类型转换等。 ... [详细]
  • iOS 小组件开发指南
    本文详细介绍了iOS小部件(Widget)的开发流程,从环境搭建、证书配置到业务逻辑实现,提供了一系列实用的技术指导与代码示例。 ... [详细]
  • 本文详细介绍了在PHP中如何获取和处理HTTP头部信息,包括通过cURL获取请求头信息、使用header函数发送响应头以及获取客户端HTTP头部的方法。同时,还探讨了PHP中$_SERVER变量的使用,以获取客户端和服务器的相关信息。 ... [详细]
  • HDFS数据读写流程详解
    本文详细解析了HDFS(Hadoop分布式文件系统)中的数据读写过程,包括从客户端发起请求到最终完成数据传输的每一个关键步骤。 ... [详细]
  • 本文探讨了使用Python实现监控信息收集的方法,涵盖从基础的日志记录到复杂的系统运维解决方案,旨在帮助开发者和运维人员提升工作效率。 ... [详细]
author-avatar
扯淡的青春0707
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有