Cannot render special HTML character with Java
I'm pretty sure this is a general Swing issue, please don't ignore this because I reference JavaHelp. When using JavaHelp and French as the displayed language, I'm having problems displaying the character (HTML entity &# 156;). Below I've included a sample HTML file, based on what my actual files looks like, which should demonstrate the problem. If I use a browser, or even Notepad, to open this file, the character displays just fine. However, in my JavaHelp popup (which uses Swings HTML renderer under the covers if I am not mistaken), all I get is a box. I've tried using the actual character and the HTML entity, but to no avail. Comments/suggestions/pointers would be greatly welcome!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<style>
li{padding-bottom: 6px; padding-top: 6px;}
body{font-family: Helvetica, Arial, sans-serif;} td{font-size: smaller;}
</style>
</head>
<body alink="#ff0000" bgcolor="#ffffff" link="#0000ff" text="#000000" vlink="#800080">
</body>
</html>
Thanks,
Jamie

