Java中有没有像TXT文件中插入一行数据而不覆盖其他内容的方法

是在文件中间插入,而不是在文件结尾追加。
2025-01-19 20:43:33
推荐回答(3个)
回答1:

//大概是这样

import java.io.File;
import java.io.RandomAccessFile;


/**
 * 
 * @author sie1501
 *
 */
public class Helloworld {
 
    public static void insertNewLine(String insertContent, int line) {
        try {
            File srcFile = new File("D:\\1.txt");//首先存在文件,文件内容:1 2 3
            if (srcFile.exists()) {
                File temp = new File("D:\\2.txt");
                RandomAccessFile read = new RandomAccessFile(srcFile, "rw");
                RandomAccessFile insert = new RandomAccessFile(temp, "rw");
                String str = "";
                int index = 0;

                while (null != (str = read.readLine())) {
                    if (index == line) {//等于写入行号时
                        insert.write((insertContent + str+"\n\r").getBytes());//写入新内容+原有内容
                    } else {
                        insert.write((str+"\n\r").getBytes());//写入原有内容
                    }

                    index++;
                }

                if (index < line) {//行号大于文件行数,在文件末位处添加内容
                    long length = temp.length();//原有文件长度
                    insert.seek(length);
                    insert.write(insertContent.getBytes());//写入文件末尾处
                }

                insert.close();
                read.close();
                read = new RandomAccessFile(srcFile, "rw");

                insert = new RandomAccessFile(temp, "rw");
                while (null != (str = insert.readLine())) {//将临时文件内容写到源文件
                    read.write((str + "\n\r").getBytes());
                }

                read.close();
                insert.close();
                temp.delete();//删除临时文件
                System.out.println("--------------End ----------");

            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {

        insertNewLine("line0d", 0);//第一行插入 line0

    
    }

}

回答2:

可以自己实现,但是比较麻烦

回答3:

long line=22L;
randomFile = new RandomAccessFile(file, "rw");
StringBuilder strBu=new StringBuilder();
// 文件长度,字节数
String str = "";
int index = 0;
while (null != (str = randomFile.readLine())) {
if (index == line) {
strBu.append(resource+"\n");
}
strBu.append(new String(str.getBytes("ISO-8859-1"),"utf-8")+"\n");
index++;
}

if(indexlong fileLength = randomFile.length();
randomFile.seek(fileLength); // 将写文件指针移到文件尾。
randomFile.write(("\n"+resource).getBytes());
}else {
randomFile.seek(0);
randomFile.write(strBu.toString().getBytes());
}