对象与byte数组的相互转化(序列化与反序列化)

该文展示了如何在Java中将对象转换为byte数组,以及如何将byte数组还原为Java对象,主要涉及ObjectOutputStream和ObjectInputStream的使用。此外,还涵盖了字符串与byte数组间的Hex转换过程。

Java对象转为byte数组

byte[] byteArray = null;
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
ObjectOutputStream objStream = null;
try {
	objStream = new ObjectOutputStream(byteStream);
	objStream.writeObject(t);
	byteArray = byteStream.toByteArray();
}catch(Exception e){
	...
}finally {
	try {
		objStream.close();
		byteStream.close();
	} catch (Exception e) {
		...
	}
}

byte数组转为Java对象

byte[] byteObj;
if(byteObj != null) {
	ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream((byte[]) byteObj);
	ObjectInputStream objectInputStream = null;
	try {
		objectInputStream = new ObjectInputStream(byteArrayInputStream);
		Object object = objectInputStream.readObject();
	} catch (Exception e) {
		...
	} finally {
		try {
			objectInputStream.close();
			byteArrayInputStream.close();
		} catch (Exception e) {
			...
		}
	}
}

字符串转为byte数组

HexFormat hexFormat = HexFormat.of();
byte[] byteObj = hexFormat.parseHex(byteStr);

byte数组转为字符串

HexFormat hexFormat = HexFormat.of();
String byteStr = hexFormat.formatHex(byteArray);
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值