// Bir properties dosyasından bilgiler okunuyor. import java.util.*; import java.io.*; public class PropertiesLoadTest { public static void main(String[] args) { try { String path = "/Users/zaferteker/Private/Books/Documents/test.properties"; Properties p = new Properties(); FileInputStream fis = new FileInputStream(path); p.load(fis); System.out.println(p.size()); // 3 System.out.println(p.get("tel")); // 02126210214 System.out.println(p.get("surname")); // Kaya } catch (Exception e) { e.printStackTrace(); } } }Dosyayı İndir