您好,登錄后才能下訂單哦!
這篇文章主要介紹如何使用java NIO及高速緩沖區寫入文件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
代碼如下
byte[] bytes = Files.readAllBytes(Paths.get("E:\\pdf\\aaa\\html\\text.txt").normalize()); String text = IOUtils.toString(bytes); String xml = text.substring(text.indexOf("<tbody>")); InputSource inputXML = new InputSource( new StringReader( xml ) ); XPath xPath = XPathFactory.newInstance().newXPath(); NodeList nodes = (NodeList) xPath.evaluate("/tbody/tr", inputXML, XPathConstants.NODESET); int length = nodes.getLength(); Path file = Paths.get("E:\\pdf\\aaa\\html\\out.txt"); try (BufferedWriter writer = Files.newBufferedWriter(file, Charset.defaultCharset(), StandardOpenOption.CREATE)) { for (int i = 0; i < length; i++) { Node node = nodes.item(i); NodeList childList = (NodeList) xPath.evaluate("td", node, XPathConstants.NODESET); for (int j = 0; j < childList.getLength(); j++) { Node child = childList.item(j); String content = child.getTextContent(); //System.out.print(content); writer.write(content); if (j <childList.getLength() - 1) { writer.write("\t"); } } writer.newLine(); } }
text.txt內容
輸出內容:
以上是“如何使用java NIO及高速緩沖區寫入文件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。