java中怎么把绝对路径改成相对路径?
发布网友
发布时间:2022-04-27 11:56
我来回答
共3个回答
热心网友
时间:2022-04-23 11:09
把文件的绝对路径转换成相对路径
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.
热心网友
时间:2022-04-23 12:27
这个你得先获得项目路径,再加上相对路径就好了,直接用相对路径的话,不一定好用吧
热心网友
时间:2022-04-23 14:02
路径使用".\\images\\xxx.jpg"