Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Thymeleaf
- QueryDSL
- Android
- pointcut
- Proxy
- 김영한
- 그리디
- java
- JPQL
- Spring Boot
- AOP
- 스프링 핵심 기능
- kotlin
- Greedy
- Exception
- 자바
- 알고리즘
- Servlet
- SpringBoot
- JDBC
- http
- springdatajpa
- 백준
- jpa
- 인프런
- transaction
- spring
- 스프링 핵심 원리
- db
- 스프링
Archives
- Today
- Total
목록직렬화 (1)
개발자되기 프로젝트
DataInput(Output)Stream, Serialization(직렬화)
1. DataInputStream과 DataOutputStream 자료가 메모리에 저장된 상태 그대로 읽거나 쓰는 스트림 DataInputStream 메서드 DataOutputStream 메서드 public class DataStreamTest { public static void main(String[] args) { try(FileOutputStream fos = new FileOutputStream("data.txt"); DataOutputStream dos = new DataOutputStream(fos)) { dos.writeByte(100); dos.writeChar('A'); dos.writeInt(10); dos.writeFloat(3.14f); dos.writeUTF("Test"); }c..
Java/다양한 기능
2021. 10. 31. 22:43