PropertyStoreTest.java
Dosyayı İndir
import java.util.*;
import java.io.*;
public class PropertyStoreTest {
public static void main(String[] args) {
try {
String path = "/Users/zaferteker/Private/Books/Documents/test.properties";
Properties p = new Properties();
p.put("name", "Ali");
p.put("surname", "Kaya");
p.put("tel", "02126210214");
FileOutputStream fis = new FileOutputStream(path);
p.store(fis, "Test Properties");
System.out.println("Properties bilgileri yazıldı.");
} catch (Exception e) {
e.printStackTrace();
}
}
}
Dosyayı İndir