gpt4 book ai didi

java - 如何从.jar源代码内部获取文件路径

转载 作者:行者123 更新时间:2023-12-01 13:41:17 26 4
gpt4 key购买 nike

我尝试使用 editor.exe 打开 file.txt

editor.exe是由Java编写的editor.jar转换而来

我是否能够从editor.exe的java源代码内部获取file.txt绝对文件路径?

enter image description here

最佳答案

看看你的main方法;具体来说,

public static void main(String[] args) {
// args[0] should be the path that was requested, in which case you
// could use
if (args.length > 0) {
java.io.File f = new java.io.File(args[0]);
if (f != null && f.exists()) {
try {
System.out.println(f.getCanonicalPath());
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

关于java - 如何从.jar源代码内部获取文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20750749/

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