diff options
author | Arindam Mondal <arind.mondal@samsung.com> | 2018-07-27 17:37:50 +0900 |
---|---|---|
committer | ONAP <arind.mondal@samsung.com> | 2018-07-27 17:40:54 +0900 |
commit | 5f8754c15602233b09b3bf202b545ee9ad26a251 (patch) | |
tree | f305443f1dba55fa3803e7027ced85e5ef3f2050 /apiroute | |
parent | 78c426e548f473ff58268c82c26a0bf4906e13be (diff) |
try with resorces
Issue-ID: MSB-224
Change-Id: I2a44c88579f323150294c814c64f50d60219ee16
Signed-off-by: ONAP <arind.mondal@samsung.com>
Diffstat (limited to 'apiroute')
-rw-r--r-- | apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/util/FileUtil.java | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/util/FileUtil.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/util/FileUtil.java index 2b6468b..234bf51 100644 --- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/util/FileUtil.java +++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/util/FileUtil.java @@ -25,7 +25,7 @@ public final class FileUtil { /** * Read all the files under a folder */ - public static File[] readFileFolder(String filepath) throws FileNotFoundException, IOException { + public static File[] readFileFolder(String filepath) throws IOException { File file = new File(filepath); if (file.isDirectory()) { File[] filelist = file.listFiles(); @@ -36,28 +36,15 @@ public final class FileUtil { } public static String readFile(String Path) throws IOException { - BufferedReader reader = null; - StringBuffer fileContent = new StringBuffer(); - try { - FileInputStream fileInputStream = new FileInputStream(Path); - InputStreamReader inputStreamReader = new InputStreamReader(fileInputStream, "UTF-8"); - reader = new BufferedReader(inputStreamReader); + StringBuilder fileContent = new StringBuilder(); + try(BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(Path),"UTF-8"));) { String tempString = null; while ((tempString = reader.readLine()) != null) { fileContent.append(tempString); } - reader.close(); } catch (IOException e) { throw e; - } finally { - if (reader != null) { - try { - reader.close(); - } catch (IOException e) { - throw e; - } - } - } + } return fileContent.toString(); } |