Erstellen eines Eigenschaftenobjekts mit einer Datei
FileInputStream fis=new FileInputStream("connection.prop");
Properties p=new Properties ();
p.load (fis);
Badhri Narayanan R