首页 > 基础资料 博客日记
Java File I/O 操作
2023-08-02 16:45:18基础资料围观252次
本篇文章分享Java File I/O 操作,对你有帮助的话记得收藏一下,看Java资料网收获更多编程知识
一、实验Demo
1. UTF_8格式读写文件节点
import java.io.*; import static java.nio.charset.StandardCharsets.UTF_8; public class FileIo { static final String TAG = "FileIO"; public static void main(String[] args) { String path = "./tmp.txt"; writeProcNode(path, "3"); System.out.println(readProcNode(path)); } static boolean writeProcNode(String filePath, String val) { File file = new File(filePath); if (!file.exists()) { return false; } try (FileOutputStream os = new FileOutputStream(file)) { byte[] data = val.getBytes(UTF_8); os.write(data); } catch (IOException e) { //Log.e(TAG, "writeProcNode: " + e.getMessage()); return false; } return true; } static String readProcNode(String filePath) { File file = new File(filePath); if (!file.exists()) { return null; } String rs = null; try (BufferedReader br = new BufferedReader(new FileReader(file))) { rs = br.readLine(); } catch (IOException e) { //Log.e(TAG, "readProcNode: " + e.getMessage()); } return rs; } } /* $ java FileIo 3 $ cat tmp.txt 3 //ASCII码为0x33 */
文章来源:https://www.cnblogs.com/hellokitty2/p/16517808.html
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签: