blob: c59efdc33b00267b0ea0bdcf8e6b2f5e3b36032b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0"
codebase="./"
href="ReadProperties2.jnlp">
<information>
<title>read properties using System.getenv()</title>
<vendor>Red Hat</vendor>
</information>
<resources>
<jar href="ReadProperties.jar" main="true"/>
</resources>
<application-desc main-class="ReadProperties">
<argument>user.home</argument>
</application-desc>
</jnlp>
|