gpt4 book ai didi

java - 检查文件数组列表中的文件名中的特定字符字符串

转载 作者:行者123 更新时间:2023-12-01 23:45:02 24 4
gpt4 key购买 nike

所以我正在编写这个程序,它必须检查文件的数组列表。我需要检查文件名中文件名中的特定字符串。

ArrayList<File> files = new ArrayList<File>(Arrays.asList(file.listFiles()));
for(int x = 0; x < file.size(); x++){
if(file[x] name contains the string "PreProcessReport"){
do this with file

}

字符串预处理报告只是示例。我需要检查文件名中任何位置可能包含 ID 号等的其他字符串,但我认为这是一个好的开始。附注这是我专业编写的第一个程序,我很清楚自己是个菜鸟。抱歉造成任何困惑。

最佳答案

只需将您的句子翻译成代码即可:

if(files.get(x).getName().contains("PreProcessReport")) { 

关于java - 检查文件数组列表中的文件名中的特定字符字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17221280/

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