자바 대상 의 직렬 화 방식 복제 상세 설명
요약:
바이트 스 트림 방식 으로 자바 대상 복사
코드:
스 트림 복제 함수
public static Object deepClone(Object obj){
if(obj == null){
return null;
}
try {
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
Object cloneObj = null;
ObjectOutputStream out = new ObjectOutputStream(byteOut);
out.writeObject(obj);
ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());
ObjectInputStream in = new ObjectInputStream(byteIn);
cloneObj = in.readObject();
return cloneObj;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
ObjectClone.java
package test;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
public class ObjectClone {
/**
*
*/
private static class Person implements Serializable {
private String name;
private int age;
Person(String name, int age){
this.name = name;
this.age = age;
}
@Override
public String toString() {
return String.format("name: %s
age: %s", name, age);
}
}
/**
*
*/
public static void main(String[] args) {
Person person = new Person("Henry", 22);
Person newPerson = (Person)ObjectClone.deepClone(person);
System.out.println(newPerson);
}
/**
*
*
* @param obj
* @return
*/
public static Object deepClone(Object obj){
if(obj == null){
return null;
}
try {
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
Object cloneObj = null;
ObjectOutputStream out = new ObjectOutputStream(byteOut);
out.writeObject(obj);
ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());
ObjectInputStream in = new ObjectInputStream(byteIn);
cloneObj = in.readObject();
return cloneObj;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
테스트 결과:총결산
이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 댓 글 을 남 겨 주 십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.