Example #1
0
 public static void readFileContentKeyValue(String filePath, Properties p)
     throws JDependException {
   readFileContent(filePath, p, "KeyValue");
 }
Example #2
0
 public static void readFileContentXML(String filePath, Properties p) throws JDependException {
   readFileContent(filePath, p, "XML");
 }
Example #3
0
 public static StringBuilder readFileContent(String filePath) throws JDependException {
   return FileUtil.readFileContent(filePath, "UTF-8");
 }