這篇文章主要講解了“commons-io如何使用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“commons-io如何使用”吧!
專業(yè)從事成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè),高端網(wǎng)站制作設(shè)計,微信小程序開發(fā),網(wǎng)站推廣的成都做網(wǎng)站的公司。優(yōu)秀技術(shù)團隊竭力真誠服務(wù),采用H5頁面制作+CSS3前端渲染技術(shù),響應(yīng)式網(wǎng)站建設(shè),讓網(wǎng)站在手機、平板、PC、微信下都能呈現(xiàn)。建站過程建立專項小組,與您實時在線互動,隨時提供解決方案,暢聊想法和感受。
引入依賴
commons-io commons-io 2.4
案例1
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FilenameUtils; import org.junit.Test; import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.List; public class IoTest { /** * 獲取文件的后綴 * 獲取文件的baseName */ @Test public void test3() throws IOException { String path = "E:\\ideaProjects2\\utils-demo\\src\\test\\resources\\1.txt"; // 獲取baseName System.out.println(FilenameUtils.getBaseName(path)); // 獲取后綴 System.out.println(FilenameUtils.getExtension(path)); } /** * 讀取指定的文本文件的內(nèi)容為List*/ @Test public void test2() throws IOException { String path = "E:\\ideaProjects2\\utils-demo\\src\\test\\resources\\1.txt"; List list = FileUtils.readLines(new File(path), StandardCharsets.UTF_8); System.out.println(list.size()); } /** * 讀取指定的文本文件的內(nèi)容為一個字符串 */ @Test public void test1() throws IOException { String path = "E:\\ideaProjects2\\utils-demo\\src\\test\\resources\\1.txt"; String string = FileUtils.readFileToString(new File(path), StandardCharsets.UTF_8); System.out.println(string); } }
感謝各位的閱讀,以上就是“commons-io如何使用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對commons-io如何使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!