您好,登錄后才能下訂單哦!
今天小編給大家分享一下Java文件讀取的方法有哪些的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
代碼:
public static String ReadFileByBufferReaderToString(String path) { if (TextUtils.isEmpty(path)) { return ""; } StringBuilder stringBuilder = new StringBuilder(); try (BufferedReader bufferedReader = new BufferedReader(new FileReader(path))) { String tempStr; while ((tempStr = bufferedReader.readLine()) != null) { stringBuilder.append(tempStr).append(System.lineSeparator()); } } catch (IOException e) { e.printStackTrace(); } return stringBuilder.toString(); }
這里我們使用stringbuilder去存儲(chǔ)讀取出來的字符串,加日志查看耗時(shí),讀取一個(gè)
onClick: readFileByBufferReaderStringBuilder tims use is 86
這里將文件讀取出來之后存儲(chǔ)方式改下,每次創(chuàng)建新的String字符串,測(cè)試一下每次創(chuàng)建新的字符串和使用StringBuilder之間的性能差異:
public static String ReadFileByBufferReaderToStringUseString(String path) { if (TextUtils.isEmpty(path)) { return ""; } String result = ""; try (BufferedReader bufferedReader = new BufferedReader(new FileReader(path))) { String tempStr; while ((tempStr = bufferedReader.readLine()) != null) { result += tempStr; } } catch (IOException e) { e.printStackTrace(); } Log.i(TAG, "ReadFileToString: read success "); return result; }
2023-04-08 23:06:06.141 18416-18518/com.example.androidstart I/TestFileReadSpeed: onClick: readFileByBufferReaderString tims use is 264041
花了264041 ms,可見多次創(chuàng)建String對(duì)象對(duì)性能消耗非常大,所以字符串拼接的時(shí)候一定要使用StringBuilder,不能使用String直接相加
@RequiresApi(api = Build.VERSION_CODES.O) public static String ReadFileByReadAllBytesReaderToString(String path) { if (TextUtils.isEmpty(path)) { return ""; } String result = null; try { result = new String(Files.readAllBytes(Paths.get(path))); } catch (IOException e) { e.printStackTrace(); } return result; }
2023-04-09 17:38:06.989 7078-7359/com.example.androidstart I/TestFileReadSpeed: onClick: ReadFileByReadAllBytesReaderToString tims use is 68
耗時(shí)68ms,比上面的BufferReader行一行讀取會(huì)快一些,但是這個(gè)API有一些限制就是必須在AndroidO及以上版本才可以使用。
@RequiresApi(api = Build.VERSION_CODES.O) public static String ReadFileByByFilesReadLinesToString(String path) { if(TextUtils.isEmpty(path)){ return ""; } StringBuilder stringBuilder = new StringBuilder(); try (Stream<String> stream = Files.lines(Paths.get(path))) { stream.forEach(new Consumer<String>() { @Override public void accept(String s) { stringBuilder.append(s); } }); } catch (IOException e) { e.printStackTrace(); } return stringBuilder.toString(); }
2023-04-09 17:46:14.342 7078-7078/com.example.androidstart I/TestFileReadSpeed: onClick: ReadFileByByFilesReadLinesToString tims use is 102
Files.lines耗時(shí)中等在100ms左右。
代碼:
public static String ReadFileByCommonIOReadFileToString(String path) { if (TextUtils.isEmpty(path)) { return ""; } try { return FileUtils.readFileToString(new File(path), Charset.defaultCharset()); } catch (IOException e) { e.printStackTrace(); } return ""; }
2023-04-09 17:53:34.204 8292-8292/com.example.androidstart I/TestFileReadSpeed: onClick: ReadFileByCommonIOReadFileToString tims use is 70
耗時(shí)為70ms
以上就是“Java文件讀取的方法有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。