gpt4 book ai didi

java - 有关检索正在处理的文件的名称并将处理后的行写入新文件的问题

转载 作者:行者123 更新时间:2023-12-01 14:13:39 24 4
gpt4 key购买 nike

目前,我已经编写了一个代码段,可以从文件夹中读取文件,并逐行读取每个文件并替换一些无用的字符。

File[] files = dir.listFiles();
FileInputStream fis;
BufferedReader br;
String line;
for (File file : files) {
fis = new FileInputStream(file);
br = new BufferedReader(new InputStreamReader(fis, Charset.forName("UTF-8")));
while ((line = br.readLine()) != null) {
System.out.println("Before: "+line);
String templine = line.replaceAll("[a-zA-Z0-9]", "");
System.out.println("After: "+templine);
};

现在我有两个问题:

我需要将这些处理过的行写入另一个备份文件,该文件与原始文件同名,但将放置在另一个目录中。

因此,第一个问题是如何获取原始文件的名称?

第二个问题是如何创建一个具有给定名称的文件并将这些处理过的行写入该文件中。

最佳答案

getNameFile类下的一个方法,用于获取文件名。

来自javadocs :

public String getName()

Returns the name of the file or directory denoted by this abstract pathname. This is just the last name in the pathname's name sequence. If the pathname's name sequence is empty, then the empty string is returned.

要创建具有名称的文件,请使用 File constructor正如这里提到的:

public File(String pathname)

Creates a new File instance by converting the given pathname string into an abstract pathname. If the given string is the empty string, then the result is the empty abstract pathname.

关于java - 有关检索正在处理的文件的名称并将处理后的行写入新文件的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18298463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com