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 | 29 | 30 | 31 |
Tags
- QueryDSL
- Spring Boot
- 백준
- JPQL
- Greedy
- springdatajpa
- transaction
- spring
- 그리디
- 자바
- pointcut
- Servlet
- java
- AOP
- 스프링 핵심 원리
- Android
- Exception
- SpringBoot
- Thymeleaf
- Proxy
- 인프런
- 스프링 핵심 기능
- JDBC
- http
- 스프링
- jpa
- 김영한
- 알고리즘
- db
- kotlin
Archives
- Today
- Total
목록serialization (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