Package Me.ilt.blog.util;import Java.io.file;import Java.io.fileinputstream;import java.io.ioexception;import Java.util.properties;public class Propertiesutil {public static string GetValue (String key) {Properties prop = new Propert ies (); try {//Mount config file prop.load (new FileInputStream ("New File (" "src//dbcfg.properties"));} catch (IOException e) { E.printstacktrace ();} Returns the obtained value return Prop.getproperty (key);} /*public static void Main (string[] args) {System.out.println (GetValue ("DbUser"));} */}
Method Two
Package Me.ilt.util;import Java.io.ioexception;import Java.io.inputstream;import Java.util.properties;public class Propertiesutil {public static string GetValue (String key) {Properties prop = new Properties (); InputStream in = new Properti Esutil (). GetClass (). getResourceAsStream ("/dbcfg.properties"); try {prop.load (in);} catch (IOException e) { E.printstacktrace ();} return Prop.getproperty (key);}}
Java Get Properties Profile value