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
- Config
- 에스가든스냅
- React
- Request
- dbContext
- 명시적외래키
- vscode
- minimalAPI
- EFCore
- ViewModel
- 대전본식영상
- extraParams
- 코드프로그래머스
- c#
- error
- JSON
- scanner
- .net
- c#코딩의기술실전편
- extjs
- lazy loading
- ORM
- LINQ
- intellij
- JavaScript
- 라도무스dvd
- Store
- 상속
- 스냅잘찍음
- mac
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.");
}
}