文档

Java™ 教程-Java Tutorials 中文版
问题和练习
Trail: Deployment
Lesson: Doing More With Java Rich Internet Applications

问题和练习:利用富 Internet 应用程序做更多事

问题

  1. 对或错:Rich Internet applications (RIAs) can set secure properties by prefixing the property name with "jnlp.".
  2. 对或错:Only signed RIAs can use JNLP API to access files on the client.

练习

  1. To the following JNLP file, add a secure property called jnlp.foo and set its value to true.
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
        <information>
            <title>Dynamic Tree Demo</title>
            <vendor>Dynamic Team</vendor>
    
        </information>
        <resources>
            <!-- Application Resources -->
            <j2se version="1.6+" href=
                "http://java.sun.com/products/autodl/j2se" />
            <jar href="DynamicTreeDemo.jar" main="true" />
        </resources>
        <applet-desc 
           name="Dynamic Tree Demo Applet"
           main-class="components.DynamicTreeApplet"
           width="300"
           height="300">
         </applet-desc>
         <update check="background"/>
    </jnlp>                           
    

检查一下你的答案。


Previous page: Guidelines for Securing Rich Internet Applications
Next page: Deployment In-Depth