当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

Java内存文件系统 Jimfs

作者:小梦 来源: 网络 时间: 2024-07-20 阅读:

开发者服务评测征文 十万现金悬赏大神

Jimfs 是一个用于 Java 7+ 的内存中的文件系统,实现了 java.nio.file 抽象文件系统 API.

Maven

<dependency>  <groupId>com.google.jimfs</groupId>  <artifactId>jimfs</artifactId>  <version>1.0</version></dependency>

示例代码:

import com.google.common.jimfs.Configuration;import com.google.common.jimfs.Jimfs;...// For a simple file system with Unix-style paths and behavior:FileSystem fs = Jimfs.newFileSystem(Configuration.unix());Path foo = fs.getPath("/foo");Files.createDirectory(foo);Path hello = foo.resolve("hello.txt"); // /foo/hello.txtFiles.write(hello, ImmutableList.of("hello world"), StandardCharsets.UTF_8);

相关阅读

热点阅读

网友最爱