java对象与字符串之间的序列化和反序列化

时间:2025-03-27 18:12:27
package ;

import ;
import ;
import ;
import ;
import ;
import ;

import ;

import ;

public class Serial2Obj {
	/**
	 * Object对象与string之间的序列化和反序列化
	 * @throws IOException 
	 * @throws ClassNotFoundException 
	 */
	@Test
	public void obj2String() throws IOException, ClassNotFoundException{
		//Object 序列化成string
		Department dept = new Department("1","开发部","开发");
		ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
		ObjectOutputStream out = new ObjectOutputStream(byteArrayOutputStream);
		(dept);
		String deptString = ("ISO-8859-1");//必须是ISO-8859-1
		("===>"+deptString);
		
		//String 的反序列化
		ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(("ISO-8859-1"));
		ObjectInputStream objectInputStream = new ObjectInputStream(byteArrayInputStream);
		Department dept2 = (Department) ();
		(dept2);
		(()+"=="+()+"=="+());
		
		();
		();
		();
		();
	}
}