Uses of Interface
java.nio.file.Path
-
Packages that use Path 软件包 描述 java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang.module 通过分辨率和服务绑定来支持模块描述符和创建模块配置的类。java.nio.channels 定义通道,其表示与能够执行I / O操作的实体的连接,例如文件和套接字; 定义选择器,用于多路复用,非阻塞I / O操作。java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。java.nio.file.spi java.nio.file
软件包的服务提供程序类。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。javax.tools 为可以从程序调用的工具提供接口,例如编译器。jdk.incubator.http 高级HTTP和WebSocket APIjdk.nashorn.api.tree Nashorn解析器API提供了将ECMAScript源代码表示为抽象语法树(AST)和解析器来解析ECMAScript源脚本的接口。 -
-
Uses of Path in java.io
Methods in java.io that return Path Modifier and Type 方法 描述 Path
File. toPath()
返回从该抽象路径构造的一个java.nio.file.Path
对象。 -
Uses of Path in java.lang.module
Methods in java.lang.module with parameters of type Path Modifier and Type 方法 描述 static ModuleFinder
ModuleFinder. of(Path... entries)
返回通过搜索一系列目录和/或打包模块来定位文件系统上的模块的模块查找器。 -
Uses of Path in java.nio.channels
Methods in java.nio.channels with parameters of type Path Modifier and Type 方法 描述 static AsynchronousFileChannel
AsynchronousFileChannel. open(Path file, OpenOption... options)
打开或创建用于读取和/或写入的文件,返回异步文件通道以访问该文件。static AsynchronousFileChannel
AsynchronousFileChannel. open(Path file, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs)
打开或创建用于读取和/或写入的文件,返回异步文件通道以访问该文件。static FileChannel
FileChannel. open(Path path, OpenOption... options)
打开或创建文件,返回文件通道以访问该文件。static FileChannel
FileChannel. open(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
打开或创建文件,返回文件通道以访问该文件。 -
Uses of Path in java.nio.file
Fields in java.nio.file with type parameters of type Path Modifier and Type Field 描述 static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_CREATE
创建目录条目。static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_DELETE
目录条目已删除。static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_MODIFY
目录条目修改。Methods in java.nio.file that return Path Modifier and Type 方法 描述 static Path
Files. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。static Path
Files. createDirectories(Path dir, FileAttribute<?>... attrs)
首先创建所有不存在的父目录来创建目录。static Path
Files. createDirectory(Path dir, FileAttribute<?>... attrs)
创建一个新的目录。static Path
Files. createFile(Path path, FileAttribute<?>... attrs)
创建一个新的和空的文件,如果该文件已存在失败。static Path
Files. createLink(Path link, Path existing)
为现有文件创建新的链接(目录条目) (可选操作) 。static Path
Files. createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs)
创建到目标的符号链接 (可选操作) 。static Path
Files. createTempDirectory(String prefix, FileAttribute<?>... attrs)
在默认临时文件目录中创建一个新目录,使用给定的前缀生成其名称。static Path
Files. createTempDirectory(Path dir, String prefix, FileAttribute<?>... attrs)
在指定的目录中创建一个新目录,使用给定的前缀生成其名称。static Path
Files. createTempFile(String prefix, String suffix, FileAttribute<?>... attrs)
在默认临时文件目录中创建一个空文件,使用给定的前缀和后缀生成其名称。static Path
Files. createTempFile(Path dir, String prefix, String suffix, FileAttribute<?>... attrs)
在指定的目录中创建一个新的空文件,使用给定的前缀和后缀字符串生成其名称。static Path
Paths. get(String first, String... more)
将路径字符串或Path
路径字符串连接起来的字符串序列转换为Path
。static Path
Paths. get(URI uri)
将给定的URI转换为Path
对象。Path
Path. getFileName()
将此路径表示的文件或目录的名称作为Path
对象返回。Path
Path. getName(int index)
将该路径的名称元素作为Path
对象返回。Path
Path. getParent()
返回 父路径 ,如果此路径没有 父项 ,则返回null
。abstract Path
FileSystem. getPath(String first, String... more)
将路径字符串或将连接到路径字符串的字符串序列转换为Path
。Path
Path. getRoot()
返回此路径的根组分作为Path
对象,或null
如果该路径不具有根组件。static Path
Files. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。Path
Path. normalize()
返回一个路径,该路径是冗余名称元素的消除。static Path
Files. readSymbolicLink(Path link)
读取符号链接的目标 (可选操作) 。Path
Path. relativize(Path other)
构造此路径和给定路径之间的相对路径。default Path
Path. resolve(String other)
Path
Path. resolve(Path other)
根据这条路径解决给定的路径。default Path
Path. resolveSibling(String other)
default Path
Path. resolveSibling(Path other)
根据此路径的parent
路径解析给定路径。static Path
Files. setAttribute(Path path, String attribute, Object value, LinkOption... options)
设置文件属性的值。static Path
Files. setLastModifiedTime(Path path, FileTime time)
更新文件上次修改的时间属性。static Path
Files. setOwner(Path path, UserPrincipal owner)
更新文件所有者。static Path
Files. setPosixFilePermissions(Path path, Set<PosixFilePermission> perms)
设置文件的POSIX权限。Path
Path. subpath(int beginIndex, int endIndex)
返回一个相对的Path
,它是该路径的名称元素的子序列。Path
Path. toAbsolutePath()
返回表示此路径的绝对路径的Path
对象。Path
Path. toRealPath(LinkOption... options)
返回现有文件的 真实路径。static Path
Files. walkFileTree(Path start, FileVisitor<? super Path> visitor)
走一个文件树。static Path
Files. walkFileTree(Path start, Set<FileVisitOption> options, int maxDepth, FileVisitor<? super Path> visitor)
走一个文件树。static Path
Files. write(Path path, byte[] bytes, OpenOption... options)
将字节写入文件。static Path
Files. write(Path path, Iterable<? extends CharSequence> lines, Charset cs, OpenOption... options)
将文本行写入文件。static Path
Files. write(Path path, Iterable<? extends CharSequence> lines, OpenOption... options)
将文本行写入文件。Methods in java.nio.file that return types with arguments of type Path Modifier and Type 方法 描述 static Stream<Path>
Files. find(Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
返回一个Stream
,它通过搜索基于给定起始文件的文件树中的文件而惰性地填充Path
。abstract Iterable<Path>
FileSystem. getRootDirectories()
返回一个对象来遍历根目录的路径。default Iterator<Path>
Path. iterator()
返回此路径的名称元素的迭代器。static Stream<Path>
Files. list(Path dir)
返回一个懒惰的Stream
,其中的元素是目录中的条目。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir)
打开一个目录,返回一个DirectoryStream
,以遍历目录中的所有条目。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir, String glob)
打开一个目录,返回一个DirectoryStream
来迭代目录中的条目。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
来迭代目录中的条目。static Stream<Path>
Files. walk(Path start, int maxDepth, FileVisitOption... options)
返回一个Stream
,它通过走在一个给定的起始文件的根文件树上,Path
。static Stream<Path>
Files. walk(Path start, FileVisitOption... options)
返回一个Stream
,它通过走根据给定起始文件的文件树而惰性地填充Path
。Methods in java.nio.file with parameters of type Path Modifier and Type 方法 描述 int
Path. compareTo(Path other)
比较两个抽象的路径词典。static long
Files. copy(InputStream in, Path target, CopyOption... options)
将输入流中的所有字节复制到文件。static long
Files. copy(Path source, OutputStream out)
将文件中的所有字节复制到输出流。static Path
Files. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。static Path
Files. createDirectories(Path dir, FileAttribute<?>... attrs)
首先创建所有不存在的父目录来创建目录。static Path
Files. createDirectory(Path dir, FileAttribute<?>... attrs)
创建一个新的目录。static Path
Files. createFile(Path path, FileAttribute<?>... attrs)
创建一个新的和空的文件,如果该文件已存在失败。static Path
Files. createLink(Path link, Path existing)
为现有文件创建新的链接(目录条目) (可选操作) 。static Path
Files. createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs)
创建到目标的符号链接 (可选操作) 。static Path
Files. createTempDirectory(Path dir, String prefix, FileAttribute<?>... attrs)
在指定的目录中创建一个新目录,使用给定的前缀生成其名称。static Path
Files. createTempFile(Path dir, String prefix, String suffix, FileAttribute<?>... attrs)
在指定的目录中创建一个新的空文件,使用给定的前缀和后缀字符串生成其名称。static void
Files. delete(Path path)
删除文件。static boolean
Files. deleteIfExists(Path path)
删除文件(如果存在)。boolean
Path. endsWith(Path other)
测试此路径是否以给定的路径结束。static boolean
Files. exists(Path path, LinkOption... options)
测试文件是否存在。static Stream<Path>
Files. find(Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
返回一个Stream
,它通过搜索基于给定起始文件的文件树中的文件而惰性地填充Path
。static Object
Files. getAttribute(Path path, String attribute, LinkOption... options)
读取文件属性的值。static <V extends FileAttributeView>
VFiles. getFileAttributeView(Path path, Class<V> type, LinkOption... options)
返回给定类型的文件属性视图。static FileStore
Files. getFileStore(Path path)
返回表示文件所在文件存储区的FileStore
。static FileTime
Files. getLastModifiedTime(Path path, LinkOption... options)
返回文件的上次修改时间。static UserPrincipal
Files. getOwner(Path path, LinkOption... options)
返回文件的所有者。static Set<PosixFilePermission>
Files. getPosixFilePermissions(Path path, LinkOption... options)
返回文件的POSIX文件权限。static boolean
Files. isDirectory(Path path, LinkOption... options)
测试文件是否是目录。static boolean
Files. isExecutable(Path path)
测试文件是否可执行。static boolean
Files. isHidden(Path path)
告知文件是否被 隐藏 。static boolean
Files. isReadable(Path path)
测试文件是否可读。static boolean
Files. isRegularFile(Path path, LinkOption... options)
测试文件是否是具有不透明内容的常规文件。static boolean
Files. isSameFile(Path path, Path path2)
测试两个路径是否找到相同的文件。static boolean
Files. isSymbolicLink(Path path)
测试文件是否是符号链接。static boolean
Files. isWritable(Path path)
测试文件是否可写。static Stream<String>
Files. lines(Path path)
从文件中读取所有行作为Stream
。static Stream<String>
Files. lines(Path path, Charset cs)
从文件中读取所有行作为Stream
。static Stream<Path>
Files. list(Path dir)
返回一个懒惰的Stream
,其中的元素是目录中的条目。boolean
PathMatcher. matches(Path path)
告诉给定路径是否匹配该匹配器的模式。static Path
Files. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。static BufferedReader
Files. newBufferedReader(Path path)
打开一个文件进行阅读,返回一个BufferedReader
以高效的方式从文件读取文本。static BufferedReader
Files. newBufferedReader(Path path, Charset cs)
打开一个文件进行阅读,返回一个BufferedReader
,可用于以有效的方式从文件读取文本。static BufferedWriter
Files. newBufferedWriter(Path path, Charset cs, OpenOption... options)
打开或创建一个写入文件,返回一个BufferedWriter
,可以用来以有效的方式将文本写入文件。static BufferedWriter
Files. newBufferedWriter(Path path, OpenOption... options)
打开或创建一个写入文件,返回一个BufferedWriter
以高效的方式写入文件。static SeekableByteChannel
Files. newByteChannel(Path path, OpenOption... options)
打开或创建文件,返回可访问的字节通道以访问该文件。static SeekableByteChannel
Files. newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
打开或创建文件,返回可访问的字节通道以访问该文件。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir)
打开一个目录,返回一个DirectoryStream
以遍历目录中的所有条目。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir, String glob)
打开一个目录,返回一个DirectoryStream
来迭代目录中的条目。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
来迭代目录中的条目。static FileSystem
FileSystems. newFileSystem(Path path, ClassLoader loader)
构造新的FileSystem
以访问文件的内容作为文件系统。static InputStream
Files. newInputStream(Path path, OpenOption... options)
打开一个文件,返回输入流以从文件中读取。static OutputStream
Files. newOutputStream(Path path, OpenOption... options)
打开或创建文件,返回可用于向文件写入字节的输出流。static boolean
Files. notExists(Path path, LinkOption... options)
测试此路径所在的文件是否不存在。static String
Files. probeContentType(Path path)
探测文件的内容类型。static byte[]
Files. readAllBytes(Path path)
读取文件中的所有字节。static List<String>
Files. readAllLines(Path path)
从文件中读取所有行。static List<String>
Files. readAllLines(Path path, Charset cs)
从文件中读取所有行。static <A extends BasicFileAttributes>
AFiles. readAttributes(Path path, Class<A> type, LinkOption... options)
读取文件的属性作为批量操作。static Map<String,Object>
Files. readAttributes(Path path, String attributes, LinkOption... options)
读取一组文件属性作为批量操作。static Path
Files. readSymbolicLink(Path link)
读取符号链接的目标 (可选操作) 。Path
Path. relativize(Path other)
构造此路径和给定路径之间的相对路径。Path
Path. resolve(Path other)
根据这条路径解决给定的路径。default Path
Path. resolveSibling(Path other)
根据此路径的parent
路径解决给定的路径。static Path
Files. setAttribute(Path path, String attribute, Object value, LinkOption... options)
设置文件属性的值。static Path
Files. setLastModifiedTime(Path path, FileTime time)
更新文件上次修改的时间属性。static Path
Files. setOwner(Path path, UserPrincipal owner)
更新文件所有者。static Path
Files. setPosixFilePermissions(Path path, Set<PosixFilePermission> perms)
设置文件的POSIX权限。static long
Files. size(Path path)
返回文件的大小(以字节为单位)。boolean
Path. startsWith(Path other)
测试此路径是否以给定的路径开始。static Stream<Path>
Files. walk(Path start, int maxDepth, FileVisitOption... options)
返回一个Stream
,它是通过走根据给定的起始文件的文件树懒惰地填充Path
。static Stream<Path>
Files. walk(Path start, FileVisitOption... options)
返回一个Stream
,它是通过走根据给定的起始文件的文件树懒惰地填充Path
。static Path
Files. walkFileTree(Path start, FileVisitor<? super Path> visitor)
走一个文件树。static Path
Files. walkFileTree(Path start, Set<FileVisitOption> options, int maxDepth, FileVisitor<? super Path> visitor)
走一个文件树。static Path
Files. write(Path path, byte[] bytes, OpenOption... options)
将字节写入文件。static Path
Files. write(Path path, Iterable<? extends CharSequence> lines, Charset cs, OpenOption... options)
将文本行写入文件。static Path
Files. write(Path path, Iterable<? extends CharSequence> lines, OpenOption... options)
将文本行写入文件。Method parameters in java.nio.file with type arguments of type Path Modifier and Type 方法 描述 static Stream<Path>
Files. find(Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
返回一个Stream
,它通过搜索基于给定起始文件的文件树中的文件来懒惰地填充Path
。static DirectoryStream<Path>
Files. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
以遍历目录中的条目。static Path
Files. walkFileTree(Path start, FileVisitor<? super Path> visitor)
走一个文件树。static Path
Files. walkFileTree(Path start, Set<FileVisitOption> options, int maxDepth, FileVisitor<? super Path> visitor)
走一个文件树。 -
Uses of Path in java.nio.file.spi
Methods in java.nio.file.spi that return Path Modifier and Type 方法 描述 abstract Path
FileSystemProvider. getPath(URI uri)
通过转换给定的URI
来返回一个Path
对象。Path
FileSystemProvider. readSymbolicLink(Path link)
读取符号链接的目标。Methods in java.nio.file.spi that return types with arguments of type Path Modifier and Type 方法 描述 abstract DirectoryStream<Path>
FileSystemProvider. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
以遍历目录中的条目。Methods in java.nio.file.spi with parameters of type Path Modifier and Type 方法 描述 abstract void
FileSystemProvider. checkAccess(Path path, AccessMode... modes)
检查文件的存在,以及可选的可访问性。abstract void
FileSystemProvider. copy(Path source, Path target, CopyOption... options)
将文件复制到目标文件。abstract void
FileSystemProvider. createDirectory(Path dir, FileAttribute<?>... attrs)
创建一个新的目录。void
FileSystemProvider. createLink(Path link, Path existing)
为现有文件创建一个新的链接(目录条目)。void
FileSystemProvider. createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs)
创建一个到目标的符号链接。abstract void
FileSystemProvider. delete(Path path)
删除文件。boolean
FileSystemProvider. deleteIfExists(Path path)
删除文件(如果存在)。abstract <V extends FileAttributeView>
VFileSystemProvider. getFileAttributeView(Path path, Class<V> type, LinkOption... options)
返回给定类型的文件属性视图。abstract FileStore
FileSystemProvider. getFileStore(Path path)
返回表示文件所在文件存储区的FileStore
。abstract boolean
FileSystemProvider. isHidden(Path path)
告知文件是否被 隐藏 。abstract boolean
FileSystemProvider. isSameFile(Path path, Path path2)
测试两个路径是否找到相同的文件。abstract void
FileSystemProvider. move(Path source, Path target, CopyOption... options)
将文件移动或重命名为目标文件。AsynchronousFileChannel
FileSystemProvider. newAsynchronousFileChannel(Path path, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs)
打开或创建用于读取和/或写入的文件,返回异步文件通道以访问该文件。abstract SeekableByteChannel
FileSystemProvider. newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
打开或创建文件,返回可访问的字节通道以访问该文件。abstract DirectoryStream<Path>
FileSystemProvider. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
以遍历目录中的条目。FileChannel
FileSystemProvider. newFileChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
打开或创建用于读取和/或写入的文件,返回文件通道以访问该文件。FileSystem
FileSystemProvider. newFileSystem(Path path, Map<String,?> env)
构造一个新的FileSystem
作为文件系统访问文件的内容。InputStream
FileSystemProvider. newInputStream(Path path, OpenOption... options)
打开一个文件,返回输入流以从文件中读取。OutputStream
FileSystemProvider. newOutputStream(Path path, OpenOption... options)
打开或创建文件,返回可用于向文件写入字节的输出流。abstract String
FileTypeDetector. probeContentType(Path path)
探测给定的文件来猜测其内容类型。abstract <A extends BasicFileAttributes>
AFileSystemProvider. readAttributes(Path path, Class<A> type, LinkOption... options)
读取文件的属性作为批量操作。abstract Map<String,Object>
FileSystemProvider. readAttributes(Path path, String attributes, LinkOption... options)
读取一组文件属性作为批量操作。Path
FileSystemProvider. readSymbolicLink(Path link)
读取符号链接的目标。abstract void
FileSystemProvider. setAttribute(Path path, String attribute, Object value, LinkOption... options)
设置文件属性的值。Method parameters in java.nio.file.spi with type arguments of type Path Modifier and Type 方法 描述 abstract DirectoryStream<Path>
FileSystemProvider. newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter)
打开一个目录,返回一个DirectoryStream
来迭代目录中的条目。 -
Uses of Path in java.util
Constructors in java.util with parameters of type Path Constructor 描述 Scanner(Path source)
构造一个新的Scanner
,产生从指定文件扫描的值。Scanner(Path source, String charsetName)
构造一个新的Scanner
,产生从指定文件扫描的值。 -
Uses of Path in javax.tools
Methods in javax.tools that return Path Modifier and Type 方法 描述 default Path
StandardJavaFileManager. asPath(FileObject file)
返回此文件对象下的路径(如果有)(可选操作)。Path
StandardJavaFileManager.PathFactory. getPath(String first, String... more)
将路径字符串或将路径字符串连接时的字符串序列转换为路径。Methods in javax.tools that return types with arguments of type Path Modifier and Type 方法 描述 default Iterable<? extends Path>
StandardJavaFileManager. getLocationAsPaths(JavaFileManager.Location location)
返回与给定位置相关联的搜索路径。Methods in javax.tools with parameters of type Path Modifier and Type 方法 描述 default Iterable<? extends JavaFileObject>
StandardJavaFileManager. getJavaFileObjects(Path... paths)
返回表示给定路径的文件对象。Method parameters in javax.tools with type arguments of type Path Modifier and Type 方法 描述 default Iterable<? extends JavaFileObject>
StandardJavaFileManager. getJavaFileObjectsFromPaths(Iterable<? extends Path> paths)
返回表示给定路径的文件对象。default void
StandardJavaFileManager. setLocationForModule(JavaFileManager.Location location, String moduleName, Collection<? extends Path> paths)
将给定的搜索路径与给定的模块和位置相关联,该模块和位置必须是面向模块或输出位置。default void
StandardJavaFileManager. setLocationFromPaths(JavaFileManager.Location location, Collection<? extends Path> paths)
将给定的搜索路径与给定位置相关联。 -
Uses of Path in jdk.incubator.http
Methods in jdk.incubator.http that return types with arguments of type Path Modifier and Type 方法 描述 static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFile(Path file)
返回一个BodyHandler<Path>
,返回一个从<Path>
获得的BodyProcessor
<Path> 。static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFile(Path file, OpenOption... openOptions)
返回一个BodyHandler<Path>
,返回一个从<Path>
获得的BodyProcessor
<Path> 。static HttpResponse.BodyProcessor<Path>
HttpResponse.BodyProcessor. asFile(Path file)
返回一个BodyProcessor
,它将响应正文放在使用给定名称打开的文件中。static HttpResponse.BodyProcessor<Path>
HttpResponse.BodyProcessor. asFile(Path file, OpenOption... openOptions)
返回一个BodyProcessor
,它将响应体存储在使用给定选项和名称打开的文件中。static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFileDownload(Path directory, OpenOption... openOptions)
返回一个BodyHandler<Path>
,返回一个指定了下载目录的BodyProcessor
<Path
>,但文件名是从Content-Disposition
响应头获取的。Methods in jdk.incubator.http with parameters of type Path Modifier and Type 方法 描述 static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFile(Path file)
返回一个BodyHandler<Path>
,返回一个从<Path>
获得的BodyProcessor
<Path> 。static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFile(Path file, OpenOption... openOptions)
返回一个BodyHandler<Path>
,它返回一个从<Path>
获得的BodyProcessor
<Path> 。static HttpResponse.BodyProcessor<Path>
HttpResponse.BodyProcessor. asFile(Path file)
返回一个BodyProcessor
,它将响应正文放在使用给定名称打开的文件中。static HttpResponse.BodyProcessor<Path>
HttpResponse.BodyProcessor. asFile(Path file, OpenOption... openOptions)
返回一个BodyProcessor
,它将响应正文放在使用给定选项和名称打开的文件中。static HttpResponse.BodyHandler<Path>
HttpResponse.BodyHandler. asFileDownload(Path directory, OpenOption... openOptions)
返回一个BodyHandler<Path>
,返回一个BodyProcessor
<Path
>其中指定了下载目录,但文件名是从Content-Disposition
响应头获取的。static HttpRequest.BodyProcessor
HttpRequest.BodyProcessor. fromFile(Path path)
从文件的内容获取数据的请求体处理器。 -
Uses of Path in jdk.nashorn.api.tree
Methods in jdk.nashorn.api.tree with parameters of type Path Modifier and Type 方法 描述 CompilationUnitTree
Parser. parse(Path path, DiagnosticListener listener)
解析源路径并返回编译单元树
-