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
- extjs
- extraParams
- minimalAPI
- 스냅잘찍음
- error
- ViewModel
- c#코딩의기술실전편
- Request
- JavaScript
- Config
- c#
- 라도무스dvd
- 코드프로그래머스
- vscode
- JSON
- 에스가든스냅
- 대전본식영상
- scanner
- 상속
- ORM
- .net
- React
- EFCore
- dbContext
- 명시적외래키
- lazy loading
- Store
- intellij
- mac
- LINQ
Archives
- Today
- Total
ejyoo's 개발 노트
Properties 본문
💡 Properties란
Properties는 Map보다 축소된 기능의 객체라고 할 수 있다.
Map은 모든 형태의 객체 데이터를 key와 value 값으로 사용할 수 있었지만,
Properties는 key와 value 값으로 String만 사용할 수 있다.
Map은 put(), get() 메서드를 이용해서 데이터를 입출력 하지만,
Properties는 setProperty(), getProperty() 메서드를 이용하여 데이터를 입출력한다.
💡 Properties 데이터 삽입 추출 - setProperty(), getProperty()
import java.util.Properties;
public class Main {
public static void main(String[] args) {
Properties prop = new Properties();
prop.setProperty("name", "kdhong");
prop.setProperty("tel", "010-1234-5678");
prop.setProperty("addr", "Daejeon");
String name = prop.getProperty("name");
String tel = prop.getProperty("tel");
System.out.println("이름 : " + name);
System.out.println("전화번호 : " + tel);
System.out.println("주소 : " + prop.getProperty("addr"));
System.out.println("■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■");
}
}
💡 Properties를 사용하여 파일 생성하기
Properties 내에 존재하는 key와 value는 파일로 생성할 수 있다.
이렇게 생성된 파일은 한글 인코딩이 지원되지 않는다.
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
public class Main {
public static void main(String[] args) throws FileNotFoundException, IOException {
Properties prop = new Properties();
prop.setProperty("name", "kdhong");
prop.setProperty("tel", "010-1234-5678");
prop.setProperty("addr", "Daejeon");
String name = prop.getProperty("name");
String tel = prop.getProperty("tel");
System.out.println("이름 : " + name);
System.out.println("전화번호 : " + tel);
System.out.println("주소 : " + prop.getProperty("addr"));
System.out.println("■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■");
prop.store(new FileOutputStream("src/baekjoonProject/test.properties"), "This is comment.");
}
}