我已经在Windows中通过名称“ sample”设置了环境变量。我可以使用以下代码获取此环境变量的值吗?
System.getProperty("sample");
在UAT环境中,我有LINUX OS。我可以在LINUX OS中设置相同的环境变量并使用检索相同的环境变量System.getProperty("sample")吗?
System.getProperty("sample")
我的意思是,System.getProperty("sample");无论使用什么操作系统,都可以进行检索吗?
另外,我想在JSP中获取环境变量的值。我知道不建议将逻辑保留在jsp中,但仍然需要使用它。我可以System.getProperty("sample");在jsp中使用吗?请帮我。
是的,这与操作系统无关,您可以在JSP中使用它。