Java中File.separator作用详解
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
File.separator代表系统默认文件目录分隔符,即我们所说的“斜线”
但由于在Windows系统中分隔符为“\”
而在Linux系统中分隔符为“/”
例如:
//在temp目录下建立一个test.txt文件
File file1 = new File ("C:\temp\test.txt");//Windows
File file2 = new File ("/temp/test.txt");//linux和UNIX
因此File.separator的作用就是保证在任何系统都可以正确表示斜线
此外 File 类还有:
1、separatorChar
代表系统的默认名称分隔符,它被表示为一个字符串(只包含一个字符)。
2、pathSeparator
此字符用于分隔以路径列表形式给定的文件序列中的文件名
在 UNIX和Linux系统上此字段为 ' : '
在Windows 系统上为 ' ; '
3、pathSeparatorChar
代表系统的路径分隔符,它被表示为一个字符串(只包含一个字符)
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)