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.
当没有为文件输入流创建文件时会发生什么?如果您想检索尚未创建的文件会怎样?它会等于null吗?
你会得到一个 IOException。你最好的选择是先测试file.exists()。file.exists()由于在您调用和开始读取文件之间可能会删除文件,因此无论如何您都必须处理异常情况。
file.exists()