eclipse中的System.getProperty("user.dir")
eclipse中的System.getProperty("user.dir")
1、在Java Application中,上述中的获取的是Java项目的路径
(1)运行源码
/** * */ package com.you.test; /** * @author YouHaiDong * */ public class Property { /** * @param args */ public static void main(String[] args) { String path = System.getProperty("user.dir"); System.out.println("Java Application项目路径:" + path); } }
(2)运行结果
项目路径:E:\Eclipse\workspace\You
2、在Java Web项目中,获取的是eclipse中的安装目录路径
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。