码迷,mamicode.com
首页 > 编程语言 > 详细

java中通过代码获取java信息,如虚拟机,版本,路径等等

时间:2017-02-15 12:21:36      阅读:1291      评论:0      收藏:0      [点我收藏+]

标签:运行   public   运行时   load   res   name   文件   tcl   文件路径   

package com.itm.path;
public class TestSystemproperty{

    public static void main(String[] args){



    System.out.println("Java运行时环境版本:\n"+System.getProperty("java.version"));

    System.out.println("Java 运行时环境供应商:\n"+System.getProperty("java.vendor"));

    System.out.println("Java 供应商的URL:\n"+System.getProperty("java.vendor.url"));

    System.out.println("Java安装目录:\n"+System.getProperty("java.home"));

    System.out.println("Java 虚拟机规范版本:\n"+System.getProperty("java.vm.specification.version"));

    System.out.println("Java 类格式版本号:\n"+System.getProperty("java.class.version"));

    System.out.println("Java类路径:\n"+System.getProperty("java.class.path"));

    System.out.println("加载库时搜索的路径列表:\n"+System.getProperty("java.library.path"));

    System.out.println("默认的临时文件路径:\n"+System.getProperty("java.io.tmpdir"));

    System.out.println("要使用的 JIT 编译器的名称:\n"+System.getProperty("java.compiler"));

    System.out.println("一个或多个扩展目录的路径:\n"+System.getProperty("java.ext.dirs"));

    System.out.println("操作系统的名称:\n"+System.getProperty("os.name"));

    System.out.println("操作系统的架构:\n"+System.getProperty("os.arch"));

    System.out.println("操作系统的版本:\n"+System.getProperty("os.version"));

    System.out.println("文件分隔符(在 UNIX 系统中是“/”):\n"+System.getProperty("file.separator"));

    System.out.println("路径分隔符(在 UNIX 系统中是“:”):\n"+System.getProperty("path.separator"));

    System.out.println("行分隔符(在 UNIX 系统中是“/n”):\n"+System.getProperty("line.separator"));

    System.out.println("用户的账户名称:\n"+System.getProperty("user.name"));

    System.out.println("用户的主目录:\n"+System.getProperty("user.home"));

    System.out.println("用户的当前工作目录:\n"+System.getProperty("user.dir"));

    System.out.println("当前的classpath的绝对路径的URI表示法:---->> :\n" + Thread.currentThread().getContextClassLoader().getResource(""));

    System.out.println("得到的是当前类FileTest.class文件的URI目录。不包括自己!:\n"+TestSystemproperty.class.getResource(""));
    System.out.println("得到的是当前的classpath的绝对URI路径。:\n"+ TestSystemproperty.class.getResource("/"));

    }
}

  

java中通过代码获取java信息,如虚拟机,版本,路径等等

标签:运行   public   运行时   load   res   name   文件   tcl   文件路径   

原文地址:http://www.cnblogs.com/Nepal/p/6400653.html

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