- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含超过 1000 个文件的目录,我需要根据月份对它们进行压缩,重命名它们并将压缩的文件放在一个文件夹中。我通常手动执行此操作,但我厌倦了这样做。我编写了一个程序,可以重命名文件并将它们放在新文件夹中,但我不知道如何按月过滤或在 Windows 10 上使用 java 压缩它们。
String path = "C:\\\\Users\\\\srs\\\\Desktop\\\\Test\\notProcessed";
File[] filelist = new File(path).listFiles();
for (File file : filelist) {
Date d = new Date(file.lastModified());
Calendar c = Calendar.getInstance();
c.setTime(d);
int iyear = c.get(Calendar.YEAR);
int imonth = c.get(Calendar.MONTH);
String syear = Integer.toString(iyear);
String smonth = Integer.toString(imonth);
System.out.println(syear + "_" + smonth);
String destpath = "C:\\\\Users\\\\srs\\\\Desktop\\\\Test\\notProcessed\\\\TestZip\\\\";
byte[] buffer = new byte[1024];
try {
FileOutputStream fos = new FileOutputStream(destpath + syear + "_" + smonth + ".zip");
ZipOutputStream zos = new ZipOutputStream(fos);
System.out.println("Output to Zip : " + file);
System.out.println("File Added : " + file.getAbsolutePath().toString());
ZipEntry ze = new ZipEntry(file.getName());
zos.putNextEntry(ze);
FileInputStream in = new FileInputStream(file);
int len;
while ((len = in.read(buffer)) > 0) {
zos.write(buffer, 0, len);
}
in.close();
zos.closeEntry();
zos.close();
System.out.println("Done");
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
这就是我到目前为止所拥有的。该程序运行,但它没有给我所需的结果。它应该给我 3 个标记为 2019_07、2019_08、2019_09 的 zip 文件夹(基于 lastModified()
),但我得到的是 2019_06、2019_07、2019_08、2019_10,每个文件夹中只有 1 个文件。
最佳答案
您当前使用的是File
API 和旧的日期时间API(例如Date
)。我建议你:
java.nio.file
API 而不是 File
API。java.time
API,而不是旧的日期时间 API。
根据我对您问题的理解,您希望按文件上次修改时间的年份和月份对文件进行分组,并将它们放入自己的 ZIP 文件中。对于分组,我们可以使用 YearMonth
类和 Files#walkFileTree(Path,Set,int,FileVisitor)
方法。这是一个例子:
Map<YearMonth, List<Path>> groupFiles(Path dir, int depth) throws IOException {
Map<YearMonth, List<Path>> result = new HashMap<>();
Files.walkFileTree(dir, Set.of(), depth, new SimpleFileVisitor<>() {
private final ZoneId systemZone = ZoneId.systemDefault();
private final YearMonth currentYearMonth = YearMonth.now();
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
YearMonth yearMonth = getYearMonthOfLastModifiedTime(attrs);
if (yearMonth.isBefore(currentYearMonth)) {
result.computeIfAbsent(yearMonth, k -> new ArrayList<>()).add(file);
}
return FileVisitResult.CONTINUE;
}
private YearMonth getYearMonthOfLastModifiedTime(BasicFileAttributes attrs) {
Instant lastModInstant = attrs.lastModifiedTime().toInstant();
return YearMonth.from(LocalDate.ofInstant(lastModInstant, systemZone));
}
});
return result;
}
以上是使用系统默认时区。我还添加了选项来指定搜索文件树(根位于 dir
)时要到达的最大深度。如果您只想查找 dir
的直接子文件,请使用 1
。此外,在最大深度始终为1
的情况下,您可以使用DirectoryStream
而不是FileVisitor
>.
请注意,要获取 Path
实例,您可以调用 File#toPath()
。然而,由于我们试图避免使用 File
类,因此最好使用 Path#of(String,String...)
(或者,如果不使用 Java 11+,则使用 Paths#get
)。例如:
Path path = Path.of("C:", "Users", "srs", "Desktop", "Test", "notProcessed");
上面的Path
将与默认的FileSystem
关联。
将文件按上次修改时间的年月
分组后,您需要将它们放入 ZIP 文件中。在 JDK 中,至少有两个用于创建 ZIP 文件的选项:
java.util.zip
API。java.nio.file
API 使用)。我相信,第一个选项可以让您更好地控制压缩过程。但是,第二个选项允许您以透明的方式像对待任何其他文件系统一样对待 ZIP 文件。对于这个答案,我将展示第二个选项的示例:
List<Path> compressFiles(Path zipDir, Map<YearMonth, List<Path>> groupedFiles)
throws IOException {
List<Path> zipFiles = new ArrayList<>(groupedFiles.size());
DateTimeFormatter zipFilenameFormatter = DateTimeFormatter.ofPattern("uuuu_MM'.zip'");
for (Map.Entry<YearMonth, List<Path>> entry : groupedFiles.entrySet()) {
Path zipFile = zipDir.resolve(zipFilenameFormatter.format(entry.getKey()));
zipFiles.add(zipFile);
URI uri = URI.create("jar:" + zipFile.toUri());
Map<String, ?> env = Map.of("create", Boolean.toString(Files.notExists(zipFile)));
try (FileSystem zipFileSystem = FileSystems.newFileSystem(uri, env)) {
Path zipRoot = zipFileSystem.getRootDirectories().iterator().next();
for (Path source : entry.getValue()) {
Files.move(source, zipRoot.resolve(source.getFileName().toString()));
}
}
}
return zipFiles;
}
我使用DateTimeFormatter
因为您的问题表明 ZIP 文件的文件名应该是 year_month.zip
(带下划线)。 YearMonth#toString()
方法将返回 year-month
(带有破折号),因此 DateTimeFormatter
用于分隔年和月一个下划线。如果您不介意破折号,那么您可以简单地使用 yearMonth.toString() + ".zip"
创建文件名。
上面使用Files#move(Path,Path,CopyOption...)
实际将文件添加到 ZIP 文件中。文件将被压缩。请注意,如果 ZIP 文件中已存在具有该名称的条目,此操作将会失败,但您可以使用 REPLACE_EXISTING
更改此设置。调用#move
将删除源文件;如果不需要,请考虑使用 Files#copy
代替。
请注意,我使用 Path#resolve(String)
而不是 Path#resolve(Path)
,因为根据我的经验,后者要求两个 Path
实例属于同一提供者。
关于java - 如何按月过滤目录中的文件、按月压缩它们、重命名它们、将它们放在包含 zip 文件的文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58698786/
场景 网站页面有一个带有分页、过滤、排序功能的表格 View 。 表中的数据是从REST API服务器获取的,数据包含数百万条记录。 数据库 REST API 服务器 Web 服务器 浏览器 问
我有一个表student,其中的列dte_date(日期)具有值(2019-01-01、2019-02-01、2019-03-01)。 .等) 条件: dte_date 列中没有重复值。 但 dte_
我有一些逻辑可以根据不活动的用户创建通知。我正在获取具有以下属性的用户列表。我想做的只是在部门有非 Activity 用户时触发我的创建通知方法。因此,给出下面的列表,基本上会创建 1 个通知,表示部
使用 GPS 开发跟踪应用程序。一切都很好,但有时由于封闭区域或恶劣天气,我得到的分数不准确。当您绘制它们时,它看起来不对,有很多跃点/跳跃。 我应该运行什么算法来过滤掉不良信号对我来说,这看起来像是
我正在尝试按变量类型过滤对象数组。节点是一个具有位置的对象,但以不同的方式定义——作为点、矢量或附件。这是一个代码: class Joint { var position:Position
我想做的是在向量上创建一个过滤器,以便它删除未通过谓词测试的元素;但不太确定我该怎么做。 我根据谓词评估输入向量中的每个元素,例如在我的代码中,is_even 仿函数在 device_vector 向
我是 Gremlin 的新手,我正在使用 Gremlin 3.0.2 和 Stardog 5.0。我编写此查询是为了找出 schema.org 本体中两个实体之间的路径。以下是输出 - gremlin
考虑以下示例数据表, dt 30 的那一行需要去 - 或者如果其中两行 > 30相隔几秒钟,删除所有 3 个。然而 ,当我们有 4 行或更多行时,我们需要删除时间差 > 30 没有另一对 < 30
我正在考虑使用 ZeroMQ,并尝试了一些示例。但是,我无法验证 ZeroMQ 是否支持一些重要的要求。我希望你能帮助我。 我将使用这个简单的场景来问我的问题: 出版商(例如交易所)提供(大量)股票的
我需要从我的查询中过滤掉大量的对象。目前,它正在抓取类中的所有对象,我想将其过滤为查询字符串中的相关对象。我怎样才能做到这一点?当我尝试时,我收到一个属性错误说明 ''QuerySet' object
如何在 Prometheus 查询中添加标签过滤器? kube_pod_info kube_pod_info{created_by_kind="ReplicaSet",created_by_name=
我有包含字符串的列的数据框,并希望过滤掉包含某些字符串以外的任何内容的所有行。考虑下面的简化示例: string % dplyr::filter(stringr::str_detect(string,
我有以下数据框,其中包含多行的角度变化值: 'data.frame': 712801 obs. of 4 variables: $ time_passed: int 1 2 3 4 5 6
我有一个 BehaviorSubject我希望能够filter ,但要保持新订阅者在订阅时始终获得一个值的行为主题式质量,即使最后发出的值被过滤掉。有没有一种简洁的方法可以使用 rxjs 的内置函数来
我有一个 RSS 提要,每天输出大约 100 篇文章。我希望过滤它以仅包含更受欢迎的链接,也许将其过滤到 50 个或更少。回到当天,我相信您可以使用“postrank”来做到这一点,但在谷歌收购后现已
我有这样一个重复的xml树- this is a sample xml file yellowred blue greyredblue 如您所见,每个项目可以具有不同数量的颜色标签
我以为我在 Haskell 学习中一帆风顺,直到... 我有一个 [[Int]] tiles = [[1,0,0] ,[0,1,0] ,[0,1,0]
我在使用 Knockout.js 过滤可观察数组时遇到问题 我的js: 包含数据的数组 var docListData = [ { name: "Article Name 1", info:
我在 mongoDB 中有这个架构: var CostSchema = new Schema({ item: String, value: Number }); var Attachm
给定一个数据框“foo”,我如何才能只选择“foo”中的那些行,例如foo$location =“那里”? foo = data.frame(location = c("here", "there",
我是一名优秀的程序员,十分优秀!