FileInputStream raf = null;
Properties prop = null;
raf = new FileInputStream(file);
prop = new Properties();
prop.load(raf);
raf.close();
MTAID= prop.getProperty(iniMTAID).trim();