java中怎么把绝对路径改成相对路径?
谢邀。不多废话了,直接说。
把文件的绝对路径转换成相对路径 java.io.File提供了两个方法:
File
getAbsoluteFile()返回一个File对象实例
Returns the absolute form of this abstract pathname.
String
getAbsolutePath() 返回一个字符串
Returns the absolute pathname string of this abstract pathname.
java.nio.file.Path提供的
Path
toAbsolutePath()
Returns a Path object representing the absolute path of this
path.
楼主可以私聊我,我给你些学习资料,