Environment variables for java installation

后端 未结 14 1064
清歌不尽
清歌不尽 2020-11-22 00:52

How to set the environment variables for Java in Windows (the classpath)?

14条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 00:54

    Under Linux: http://lowfatlinux.com/linux-environment-variables.html

    And of course, you can retrieve them from Java using:

    String variable = System.getProperty("mykey");
    

提交回复
热议问题