Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读 java 文档,告诉我应该有一个 java.nio.file 命名空间。但是当我尝试导入它时,预编译器抱怨它不存在。
这是怎么回事?
java.nio.file即将出现在 Java 7 中。它不在 Java 6 或更早版本中。
java.nio.file
您必须阅读JDK7 文档。
在那之前,你会被java.io.File所困扰。