如何在JRE7上编码我的java Web Start应用程序标题?

时间:2013-03-13 02:26:43

标签: java xml encoding utf-8 jnlp

我有一个JWS应用程序,它的标题是中文。它在jre6上工作正常。但是在jre7上,它没有正确编码Windows 7(或Windows XP)上的快捷方式标题,Java Cache Viewer对话框和Certification Dialog都有同样的问题。

如何在JRE7上编码我的java Web Start应用程序标题?

JNLP文件的内容如下:

<?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="6.0+" codebase="localhost:9080/xmaker/">
        <information>
            <!--  chinese title -->
            <title>课件录制工具</title>
            <vendor>XXX</vendor>
            <shortcut online="true" install="false">
                <desktop/>
            </shortcut>
            <offline-allowed/>
        </information>
        <security>
            <all-permissions/>
        </security>
        <update check="timeout" policy="always"/>
        <resources>
            <java initial-heap-size="134217728" version="1.6+"/>
            <!-- some other jar resources -->
        </resources>
        <application-desc main-class="xxx.xxx.xxx.RecorderToolMain"> </application-desc> 
    </jnlp>

0 个答案:

没有答案