gpt4 book ai didi

java - Java中获取绝对路径

转载 作者:行者123 更新时间:2023-12-01 19:01:35 25 4
gpt4 key购买 nike

我有字符串:

字符串 s = "~/abc/d.png"

如何获取该文件的绝对路径?

我已经尝试过:

File file = new File(s);
String absolutePath = file.getAbsolutePath();

但它无法解析 ~ 符号。

最佳答案

Java 不会知道 ~ 的含义,因为它是您的主目录的 shell 扩展。您可以在将其交给 File 之前执行此操作:

s = s.replace("~",System.getProperty("user.home"));

关于java - Java中获取绝对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12065772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com