lottomadness.jnlp

来自「里面包含了多个java的编程示例!而且举出初学者常常遇到的错误!」· JNLP 代码 · 共 19 行

JNLP
19
字号
 1: <?xml version="1.0" encoding="utf-8"?>
 2: <!-- JNLP File for LottoMadness Application -->
 3: <jnlp
 4:   codebase="http://www.cadenhead.org/book/java24hours/java"
 5:   href="LottoMadness.jnlp">
 6:   <information>
 7:     <title>LottoMadness Application</title>
 8:     <vendor>Rogers Cadenhead</vendor>
 9:     <homepage href="http://www.java24hours.com"/>
10:     <icon href="lottobigicon.gif"/>
11:     <offline-allowed/>
12:   </information>
13:   <resources>
14:     <j2se version="1.5"/>
15:     <jar href="LottoMadness.jar"/>
16:   </resources>
17:   <application-desc main-class="LottoMadness"/>
18: </jnlp>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?