java中怎么把绝对路径改成相对路径

更新时间:01-25 教程 由 傲骨 分享

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.

楼主可以私聊我,我给你些学习资料,

声明:关于《java中怎么把绝对路径改成相对路径》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2200497.html