文件处理是任何编程语言的重要组成部分。在 java 中,java.io 和 java.nio 该包为阅读和写入文件(文本和二进制)提供了强大的类别。本指南涵盖了 java 基本的文件处理知识,包括示例、挑战和技能,可以帮助你掌握这个主题。
1.读写文本文件 阅读文本文件java提供了多种阅读文本文件的方法,但最常见、最简单的方法是使用bufferedreader和filereader。
示例:
import java.io.bufferedreader; import java.io.filereader; import java.io.ioexception; public class textfilereader { public static void main(string[] args) { try (bufferedreader reader = new bufferedreader(new filereader("example.txt"))) { string line; while ((line = reader.readline()) != null) { system.out.println(line); } } catch (ioexception e) { e.printstacktrace(); } } }
要点:
- bufferedreader 逐步高效阅读文本。
- try-with-resources 句子确保资源自动关闭。
使用 bufferedwriter 和 filewriter 写文本文件也很简单。
立即学习“Java免费学习笔记(深入);
示例:
import java.io.bufferedwriter; import java.io.filewriter; import java.io.ioexception; public class textfilewriter { public static void main(string[] args) { try (bufferedwriter writer = new bufferedwriter(new filewriter("example.txt"))) { writer.write("hello, world!"); writer.newline(); writer.write("this is a text file."); } catch (ioexception e) { e.printstacktrace(); } } }
挑战:写一个 java 程序,逐步读取文本文件,计算文件中的单词数。
二、读写二进制文件二进制文件需要不同的方法,因为它们不是人类可读的。 java 的 fileinputstream 和 fileoutputstream 类别非常适合读取和写入二进制数据。
读取二进制文件示例:
import java.io.fileinputstream; import java.io.ioexception; public class binaryfilereader { public static void main(string[] args) { try (fileinputstream inputstream = new fileinputstream("example.dat")) { int bytedata; while ((bytedata = inputstream.read()) != -1) { system.out.print(bytedata + " "); } } catch (ioexception e) { e.printstacktrace(); } } }
要点:
- fileinputstream 逐字节读取数据。
- 对图像或序列化对象等文件非常有用。
示例:
import java.io.fileoutputstream; import java.io.ioexception; public class binaryfilewriter { public static void main(string[] args) { try (fileoutputstream outputstream = new fileoutputstream("example.dat")) { outputstream.write(65); // writes a single byte to the file outputstream.write(new byte[]{66, 67, 68}); // writes multiple bytes to the file } catch (ioexception e) { e.printstacktrace(); } } }
挑战:编写一个程序,从一个位置复制二进制文件(如图像)到另一个位置。
3.从 zip 文件读取java 的 java.util.zip 允许您使用 zip 文件。你可以用 zipinputstream 从 zip 提取存档中的文件。
示例:import java.io.fileinputstream; import java.io.fileoutputstream; import java.io.ioexception; import java.util.zip.zipentry; import java.util.zip.zipinputstream; public class zipfilereader { public static void main(string[] args) { try (zipinputstream zipstream = new zipinputstream(new fileinputstream("example.zip"))) { zipentry entry; while ((entry = zipstream.getnextentry()) != null) { system.out.println("extracting: " + entry.getname()); fileoutputstream outputstream = new fileoutputstream(entry.getname()); byte[] buffer = new byte[1024]; int len; while ((len = zipstream.read(buffer)) > 0) { outputstream.write(buffer, 0, len); } outputstream.close(); zipstream.closeentry(); } } catch (ioexception e) { e.printstacktrace(); } } }
要点:
- zipinputstream 从 zip 读取文件中的条目。
- 循环提取可用于每个项目(文件或目录)。
挑战:写一个 java 程序,从 zip 在存档中读取一切 .txt 并将其内容打印到控制台上。
4.写入 office 文件java 本身不支持写入 microsoft office 文件(例如 .docx 或 .xlsx),但可以使用 apache poi 等库来实现这一目的p> 写入 excel 文件
示例:
import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.xssfworkbook; import java.io.fileoutputstream; import java.io.ioexception; public class excelfilewriter { public static void main(string[] args) { workbook workbook = new xssfworkbook(); sheet sheet = workbook.createsheet("sheet1"); row row = sheet.createrow(0); cell cell = row.createcell(0); cell.setcellvalue("hello, excel!"); try (fileoutputstream outputstream = new fileoutputstream("example.xlsx")) { workbook.write(outputstream); } catch (ioexception e) { e.printstacktrace(); } } }
挑战:写一个 java 创建一个包含多个工作表的程序 excel 文件,每个工作表包含一个数据表。
5.读写 xml 文件java 提供多种处理方法 xml 文件的方法。 javax.xml.parsers 包通常用于这个目的。
读取 xml 文件示例:
import javax.xml.parsers.documentbuilder; import javax.xml.parsers.documentbuilderfactory; import org.w3c.dom.document; import org.w3c.dom.nodelist; import java.io.file; public class xmlfilereader { public static void main(string[] args) { try { file file = new file("example.xml"); documentbuilderfactory factory = documentbuilderfactory.newinstance(); documentbuilder builder = factory.newdocumentbuilder(); document doc = builder.parse(file); nodelist nodelist = doc.getelementsbytagname("tagname"); for (int i = 0; i <h4> <strong>写入 xml 文件</strong> </h4> <p><strong>示例:</strong><br></p> <pre class="brush:php;toolbar:false">import javax.xml.parsers.documentbuilderfactory; import javax.xml.parsers.parserconfigurationexception; import javax.xml.transform.*; import javax.xml.transform.dom.domsource; import javax.xml.transform.stream.streamresult; import org.w3c.dom.document; import org.w3c.dom.element; import java.io.file; public class xmlfilewriter { public static void main(string[] args) { try { documentbuilderfactory factory = documentbuilderfactory.newinstance(); documentbuilder builder = factory.newdocumentbuilder(); document doc = builder.newdocument(); element root = doc.createelement("root"); doc.appendchild(root); element child = doc.createelement("child"); child.appendchild(doc.createtextnode("hello, xml!")); root.appendchild(child); transformerfactory transformerfactory = transformerfactory.newinstance(); transformer transformer = transformerfactory.newtransformer(); transformer.setoutputproperty(outputkeys.indent, "yes"); domsource source = new domsource(doc); streamresult result = new streamresult(new file("example.xml")); transformer.transform(source, result); } catch (parserconfigurationexception | transformerexception e) { e.printstacktrace(); } } }
挑战:创造一个 java 程序,读取 xml 配置文件并以人类可读格式输出设置。
6.文件 i/o 中间异常处理在处理文件时,由于文件丢失、权限错误或数据格式意外,异常情况非常普遍。正确的异常处理对于强大的程序非常重要。
常见 i/o 异常- filenotfoundexception: 试着打开不存在的文件。
- ioexception: i/o 失败通常是异常的,比如读写错误。
最佳实践:
- 使用 try-with-resources:即使出现异常,文件也能正确关闭。
- 特定的捕获块:分别处理不同的异常,以提供有意义的错误信息。
- 日志记录:始终记录异常,以帮助诊断生产中的问题。
示例:
import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class FileExceptionHandling { public static void main(String[] args) { try (BufferedReader reader = new BufferedReader(new FileReader("example.txt"))) { String line; while ((line = reader.readLine()) != null) { System.out.println(line); } } catch (IOException e) { System.err.println("An I/O error occurred: " + e.getMessage()); } } }
结论
java 从简单的文本文件到复杂的文本文件,文件处理是一个强大的功能,使您能够处理各种文件类型 xml 和二进制文件。通过掌握这些技术,你将能够很好地处理它们 java 在应用程序中基于文件的任务。
最终挑战:结合读写技术创建程序 excel 读取数据,处理数据,然后将结果写入新的数据 xml 文件。
提示及技巧:
- 缓冲: 对于大文件,总是使用缓冲(bufferedreader、bufferedwriter)以提高性能。
- 文件路径: 使用 java.nio.file 更现代、更灵活的文件处理路径和文件类别。
- utf-8 编码: 为避免编码问题,在处理文本文件时始终指定字符编码。
编码愉快!
以上是Java 中文件处理:详情请关注图灵教育的其他相关文章!