뭐해먹고 살지
Java Serialization
Java Serialization :Java Serializatoin은 자바 객체를 저장하거나 전송하기 위하여 자바 객체의 코드를 다시 복원가능한 형태의 Stream으로 직렬화 시켜주는 것을 말한다. transient : IO에서 어떤 객체를 객체직렬화(Serializable)하여 처리할시 모든 인스턴스 변수는 기본적으로 Serializable 상태이다. 만약 인스턴스변수중 직렬화를 원하지 않는 변수가 있다라고 가정할때 해당 변수를 transient로 선언해 주면 된다. ex ) private transient int id;
Computer Science/Java
2012. 4. 25. 16:51
How do I unzip multiple / many files under Linux?
How do I unzip multiple / many files under Linux?Q. I’ve lots of files in a directory called /disk2/images. All files are zip file format , so I am using following command: unzip *.zip Which is result into an error as follows: caution: filename not matched How do I unzip multiple / many files under Linux? A. Linux or UNIX unzip command will list, test, or extract files from a ZIP archive, common..
Computer Science/Linux
2011. 10. 17. 15:04