• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

A problem of JNLP file

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi , everyone ,
I have a question when edit My JNLP file . The value of description element I declared are some Chinese characters.when I launch the Application by JWS ,I found the charater appear not correctly in JWS presention windows.
Is there some wrong in my JNLP file?
How should I encode my characters in THe file so that they appear correctly in JSW presention windows?
Thanks in advance for any help!!!

The JNLP file as follows:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp
spec="1.0+" codebase="http://localhost:8080/TSM1" href="HelloWorld.jnlp">
<information>
<title>HelloWorld</title>
<vendor>denght(If I declared with Chinese Character,the error happened. )</vendor>
<homepage href="http://192.168.0.15:8080/TSM1/index.html"/>
<description>Can I use a NON-US character here?(If I declared with Chinese Character,the error character appeared happened. )</description>
<description kind="short">example</description>
<icon href="images/draw.jpg"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+"/>
<jar href="HelloWorld.jar"/>
</resources>
<application-desc main-class="HelloWorld"/>
</jnlp>

[ September 11, 2004: Message edited by: Deng Haitao ]
[ September 12, 2004: Message edited by: Deng Haitao ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic