자바 대상 직렬 화 ObjectOutputStream 과 ObjectInputStream 예시
자바 에서 Object InputStream 과 Object OutputStream 이라는 두 포장 류 는 입력 흐름 에서 대상 클래스 의 데 이 터 를 읽 고 대상 형식의 데 이 터 를 끝까지 입력 하 는 데 사용 할 수 있 습 니 다.Object InputStream 과 Object OutputStream 류 가 읽 고 쓴 대상 은 Serializable 인 터 페 이 스 를 실현 해 야 합 니 다.주의해 야 할 것 은 대상 의 transient 와 static 형식의 구성원 변 수 는 읽 히 거나 기록 되 지 않 습 니 다.
구체 적 인 코드 예시:
O bjectFileConvert.java
package michael.io;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* @blog http://sjsky.iteye.com
* @author Michael
*/
public class ObjectFileConvert {
/**
* Object
* @param fileName
* @return byte[]
*/
public static Object file2Object(String fileName) {
FileInputStream fis = null;
ObjectInputStream ois = null;
try {
fis = new FileInputStream(fileName);
ois = new ObjectInputStream(fis);
Object object = ois.readObject();
return object;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
if (ois != null) {
try {
ois.close();
} catch (IOException e2) {
e2.printStackTrace();
}
}
}
return null;
}
/**
* Object
* @param obj
* @param outputFile
*/
public static void object2File(Object obj, String outputFile) {
ObjectOutputStream oos = null;
FileOutputStream fos = null;
try {
fos = new FileOutputStream(new File(outputFile));
oos = new ObjectOutputStream(fos);
oos.writeObject(obj);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (oos != null) {
try {
oos.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e2) {
e2.printStackTrace();
}
}
}
}
/**
* @param args
*/
@SuppressWarnings("unchecked")
public static void main(String[] args) {
String fileName = "d:/test/object.obj";
List<String> list = new ArrayList<String>();
list.add("michael");
list.add(" ");
ObjectFileConvert.object2File(list, fileName);
System.out.println("success write List<String> to file.");
List<String> tmpList = (List<String>) ObjectFileConvert
.file2Object(fileName);
for (String tmp : tmpList) {
System.out.println(tmp);
}
System.out.println("--------------------------------");
fileName = "d:/test/uservo.obj";
UserVo vo = new UserVo("michael", " ", 18, new Date());
ObjectFileConvert.object2File(vo, fileName);
System.out.println("success write bean:UserVo to file.");
UserVo tmpvo = (UserVo) ObjectFileConvert.file2Object(fileName);
System.out.println("read bean:UserVo from file get info : " + tmpvo);
}
}
UserVo.java
package michael.io;
import java.io.Serializable;
import java.util.Date;
/**
* @blog http://sjsky.iteye.com
* @author Michael
*/
public class UserVo implements Serializable {
/**
* serialVersionUID
*/
private static final long serialVersionUID = -6846034858002233878L;
private String userId;
private String userName;
private int age;
private Date born;
public UserVo() {
}
public UserVo(String userId, String userName, int age, Date born) {
this.userId = userId;
this.userName = userName;
this.age = age;
this.born = born;
}
/**
* @return the userId
*/
public String getUserId() {
return userId;
}
/**
* @return the userName
*/
public String getUserName() {
return userName;
}
/**
* @return the age
*/
public int getAge() {
return age;
}
/**
* @return the born
*/
public Date getBorn() {
return born;
}
/**
* @param pUserId the userId to set
*/
public void setUserId(String pUserId) {
userId = pUserId;
}
/**
* @param pUserName the userName to set
*/
public void setUserName(String pUserName) {
userName = pUserName;
}
/**
* @param pAge the age to set
*/
public void setAge(int pAge) {
age = pAge;
}
/**
* @param pBorn the born to set
*/
public void setBorn(Date pBorn) {
born = pBorn;
}
@Override
public String toString() {
return "userId=[ " + userId + " ] userName=[ " + userName + " ] age=[ "
+ age + " ] born=[ " + born + "] .";
}
}
실행 결 과 는 다음 과 같 습 니 다.
success write List
michael
--------------------------------
success write bean:UserVo to file.
read bean:UserVo from file get info :
userId = [michael] userName = [big] age = [18] born = [Mon Aug 01 13: 49: 33 CST 2011].
본문 연결:http://sjsky.iteye.com/blog/1137231
마 이 클 스 블 로그
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.