zoukankan      html  css  js  c++  java
  • java如何获取项目的工作目录

    package maptoxml;

    public class Tfff {

    public static void main(String[] args) {
    System.out.println("Java运行时环境版本:"+System.getProperty("java.version"));
    System.out.println("Java 运行时环境供应商:"+System.getProperty("java.vendor"));
    System.out.println("Java 供应商的URL:"+System.getProperty("java.vendor.url"));
    System.out.println("Java安装目录:"+System.getProperty("java.home"));
    System.out.println("Java 虚拟机规范版本:"+System.getProperty("java.vm.specification.version"));
    System.out.println("Java 类格式版本号:"+System.getProperty("java.class.version"));
    System.out.println("Java类路径:"+System.getProperty("java.class.path"));
    System.out.println("加载库时搜索的路径列表:"+System.getProperty("java.library.path"));
    System.out.println("默认的临时文件路径:"+System.getProperty("java.io.tmpdir"));
    System.out.println("要使用的 JIT 编译器的名称:"+System.getProperty("java.compiler"));
    System.out.println("一个或多个扩展目录的路径:"+System.getProperty("java.ext.dirs"));
    System.out.println("操作系统的名称:"+System.getProperty("os.name"));
    System.out.println("操作系统的架构:"+System.getProperty("os.arch"));
    System.out.println("操作系统的版本:"+System.getProperty("os.version"));
    System.out.println("文件分隔符(在 UNIX 系统中是“/”):"+System.getProperty("file.separator"));
    System.out.println("路径分隔符(在 UNIX 系统中是“:”):"+System.getProperty("path.separator"));
    System.out.println("行分隔符(在 UNIX 系统中是“/n”):"+System.getProperty("line.separator"));
    System.out.println("用户的账户名称:"+System.getProperty("user.name"));
    System.out.println("用户的主目录:"+System.getProperty("user.home"));
    System.out.println("用户的当前工作目录:"+System.getProperty("user.dir"));
    System.out.println("当前的classpath的绝对路径的URI表示法:" + Thread.currentThread().getContextClassLoader().getResource(""));
    System.out.println("得到的是当前的classpath的绝对URI路径:"+ Tfff.class.getResource("/"));
    System.out.println("得到的是当前类Tfff.class文件的URI目录:"+Tfff.class.getResource(""));

    }

    }

  • 相关阅读:
    jmeter使用教程
    Jmeter的好搭档Badboy的安装与简单使用
    十大编程算法助程序员走上高手之路
    polyfillJS生成promise对象
    js+canvas实现滑动拼图验证码功能
    WebAssembly介绍
    解释器与编译器
    使用axios优雅的发起网络请求
    【javascript】script标签的async异步解析
    sass用法快速入门
  • 原文地址:https://www.cnblogs.com/chinaifae/p/10189928.html
Copyright © 2011-2022 走看看