반응형
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 |
Tags
- include 지시자
- interrupt()
- interrupted()
- 리눅스세팅
- 표현 언어
- include지시자
- 상관 서브 쿼리
- first-of-child
- isinterrupted()
- Linux셋팅
- Linux세팅
- 동기화
- MemoryStream
- InputDialog
- ThreadGroup()
- 스레드그룸
- first-child
- Daemon()
- include액션태그
- 메모리스트림
- 상관서브쿼리
- String char[] 형변환
- ObjectInputStream
- StringReader
- ID중복
- 아이디중복
- sleep()메소드
- char[] String 형변환
- 리눅스셋팅
- StringWriter
Archives
- Today
- Total
목록Properties (1)
다연이네

Properties 1. Hashtable을 상속한 자식 클래스 Properties 클래스 2. ***특징 = key-String, value-String 3. Properties 만의 기능 ? 프로그램의 환경설정과 관련된 데이터를 파일로부터 읽기, 쓰기 4. 프로그램의 환경설정할 때 많이 사용 5. key, value 모두 String이라서 제네릭 필요x package days23; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.util.Properties; public class Ex10 { public static void main(String[] args) { //J..
Java
2020. 10. 21. 21:52