码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse中的System.getProperty("user.dir")

时间:2015-01-27 21:59:12      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:java   web   eclipse   

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中的安装目录路径




eclipse中的System.getProperty("user.dir")

标签:java   web   eclipse   

原文地址:http://blog.csdn.net/you23hai45/article/details/43202269

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!