Read Properties file using java package com.pukhraj.blog; import java.io.FileInputStream; import java.util.Properties; public class ReadPropertiesFile { public static void main(String[] args) { Properties prop = new Properties(); try { FileInputStream in = new FileInputStream("PropertiesFilePath"); prop.load(in); String name = prop.getProperty("name"); String address = prop.getProperty("address"); String city = prop...
Why does Java suck so much? Nope, It's too easy, If you have some experience. Is Java a dying technology? Nope, It's an stable language. Is Java good or bad? Very Good.