-
java追加文件的几种方式
- import java.io.BufferedWriter;
- import java.io.FileOutputStream;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.io.OutputStreamWriter;
- import java.io.RandomAccessFile;
-
-
-
-
-
-
- public class WriteStreamAppend {
-
-
-
-
-
-
- public static void method1(String file, String conent) {
- BufferedWriter out = null;
- try {
- out = new BufferedWriter(new OutputStreamWriter(
- new FileOutputStream(file, true)));
- out.write(conent);
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- try {
- out.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
-
-
-
-
-
-
-
- public static void method2(String fileName, String content) {
- try {
-
- FileWriter writer = new FileWriter(fileName, true);
- writer.write(content);
- writer.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
-
-
-
-
-
-
-
-
-
- public static void method3(String fileName, String content) {
- try {
-
- RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
-
- long fileLength = randomFile.length();
-
- randomFile.seek(fileLength);
- randomFile.writeBytes(content);
- randomFile.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
-
- public static void main(String[] args) {
- System.out.println("start");
- method1("c:/test.txt", "追加到文件的末尾");
- System.out.println("end");
- }
-
相关阅读:
UIView+ViewController.h 点击控制器上视图,使视图push下个视图控制的封装
Touch Demo
layoutSubviews与drawRect
UI NS CG CF 区别
CALayer
关于CALayer的困惑
pypy 对接阿里短信平台
mysql去掉默认值
GCC升级
jemalloc 测试
-
原文地址:https://www.cnblogs.com/Free-Thinker/p/3469177.html
Copyright © 2020-2023
润新知