Java获取缓系统缓存路径踩坑

Java获取缓系统缓存路径遇到的问题

System.getProperty(“java.io.tmpdir”)踩坑

    public static void main(String[] args) {
        System.out.println(System.getProperty("java.io.tmpdir"));
    }

在windows环境下的输出:

C:\Users\45869\AppData\Local\Temp\

然而在linux环境下输出:

------------log----------------
获取系统JAVA数据缓存目录:/tmp
------------log----------------

对于需要使用字符串来拼接路径时需要注意要中间增加File.separator
或者直接使用Paths和File来生成正确的路径:

    public static void main(String[] args) {
        String tmpdir = System.getProperty("java.io.tmpdir");
        Path path1 = Paths.get(tmpdir, "A", "B");
        Path path2 = Paths.get("C:\\Users\\45869\\AppData\\Local\\Temp", "A", "B");
        System.out.println(path1.toAbsolutePath()); //C:\Users\45869\AppData\Local\Temp\A\B
        System.out.println(path2.toAbsolutePath()); //C:\Users\45869\AppData\Local\Temp\A\B

        File file1 = new File(tmpdir, "A");
        File file2 = new File("C:\\Users\\45869\\AppData\\Local\\Temp", "A");
        System.out.println(file1.getAbsolutePath()); //C:\Users\45869\AppData\Local\Temp\A
        System.out.println(file2.getAbsolutePath()); //C:\Users\45869\AppData\Local\Temp\A
    }

System.getProperty(key)说明

Key
	Description of Associated Value
java.version
	Java Runtime Environment version
java.vendor
	Java Runtime Environment vendor
java.vendor.url
	Java vendor URL
java.home
	Java installation directory
java.vm.specification.version
	Java Virtual Machine specification version
java.vm.specification.vendor
	Java Virtual Machine specification vendor
java.vm.specification.name
	Java Virtual Machine specification name
java.vm.version
	Java Virtual Machine implementation version
java.vm.vendor
	Java Virtual Machine implementation vendor
java.vm.name
	Java Virtual Machine implementation name
java.specification.version
	Java Runtime Environment specification version
java.specification.vendor
	Java Runtime Environment specification vendor
java.specification.name
	Java Runtime Environment specification name
java.class.version
	Java class format version number
java.class.path
	Java class path
java.library.path
	List of paths to search when loading libraries
java.io.tmpdir
	Default temp file path
java.compiler
	Name of JIT compiler to use
java.ext.dirs
	Path of extension directory or directories Deprecated. This property, and the mechanism which implements it, may be removed in a future release.
os.name
	Operating system name
os.arch
	Operating system architecture
os.version
	Operating system version
file.separator
	File separator ("/" on UNIX)
path.separator
	Path separator (":" on UNIX)
line.separator
	Line separator ("\n" on UNIX)
user.name
	User's account name
user.home
	User's home directory
user.dir
	User's current working directory
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
Java获取系统下载路径有多种方式。其中一种方式是使用`System.getProperty("user.home")`来获取用户的主目录,然后在该目录下创建一个名为"Downloads"的文件夹作为下载路径。代码示例如下: ```java String userHome = System.getProperty("user.home"); String downloadPath = userHome + File.separator + "Downloads"; ``` 另一种方式是使用`JFileChooser`类来选择下载路径。这个类提供了一个对话框,允许用户选择文件夹作为下载路径。代码示例如下: ```java JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); int result = fileChooser.showOpenDialog(null); if (result == JFileChooser.APPROVE_OPTION) { File selectedFile = fileChooser.getSelectedFile(); String downloadPath = selectedFile.getAbsolutePath(); } ``` 还有一种方式是使用`FileSystemView`类来获取系统的默认下载路径。代码示例如下: ```java FileSystemView fileSystemView = FileSystemView.getFileSystemView(); File downloadDir = fileSystemView.getDefaultDirectory(); String downloadPath = downloadDir.getAbsolutePath(); ``` 以上是几种获取系统下载路径的方式,你可以根据具体需求选择适合的方式来获取下载路径。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *2* [java 获取路径](https://blog.csdn.net/judyfun/article/details/52210030)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [【java获取项目资源路径](https://blog.csdn.net/qq_44077764/article/details/129243110)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Q J X

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值