1

我有一个 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>
4

0 回答 0