如何获取默认文件属性以创建路径

我想创建一个路径Files.createFile(path, FileAttributes...)

如何获取一组默认文件属性以在 Windows 上创建文件?


千万里不及你
浏览 60回答 1
1回答

慕侠2389804

以下是您的事业的基本示例。public static void main(String[] args) throws IOException {        BasicFileAttributes thisFileBasicAttributes = null;        Path pathOfThisFile = Paths.get("/myKey.store");        System.out.println(pathOfThisFile);        try{        thisFileBasicAttributes = Files.readAttributes(pathOfThisFile, BasicFileAttributes.class);        Object fileKeyBasic = thisFileBasicAttributes.fileKey();        String output = "Basic: " + fileKeyBasic.toString();        System.out.println(output);        }        catch(IOException exception)        {            System.err.println("JVM reported an exception, please take a look at" + exception);        }    }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java