Java 相当于 PHP 的 DIRECTORY_SEPARATOR?
在 PHP 中,为了确保路径包含适合操作系统的目录分隔符,可以使用 DIRECTORY_SEPARATOR 常量(尽管它可能并不总是需要这样做)。
Java 中有等效的实体吗?
In PHP, to ensure that a path contains OS-appropriate directory separator characters, one would use the DIRECTORY_SEPARATOR
constant (although it might not always be necessary to do so).
Is there an equivalent entity in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
java.io.File 类提供了两个与系统相关的常量:
java.io.File.separator
是一个包含系统相关名称分隔符的字符串(即 Unix 的“/” , "\" 对于 Windows)java.io.File.pathSeparator
是一个包含系统相关路径分隔符的字符串(即“:”对于 Unix,“;”对于 Windows)There are two system-dependant constants provided by the
java.io.File
class:java.io.File.separator
is a string containing the system-dependent name-separator character (ie "/" for Unix, "\" for Windows)java.io.File.pathSeparator
is a string containing the system-dependent path-separator character (ie ":" for Unix, ";" for Windows)使用 Google 将我带到 java.io.File
Using Google takes me to java.io.File