Display Simsun Font in JTextPane, need all characters have same width,including
Need help regarding this issue.
I am using a JTextPane for display and user input, and I need to use "Simsum" font(customer requirment). And an important requirment is that every character should have the same width, including space. And I find out that when displayed in JTextPane, for English characters and digits, there is no problem, they all have same width, only problem is with space, it is a little bit narrower than other characters. For example, if I type 26 characters "ABCD.....XYZ" in the first line, then type 26 spaces in the second line, it is very noticeable that the spaces are narrower.
At first I thought it is the problen with the font, but then I tried type characters and spaces in Notepad using "Simsun" font and find out that space has the same width with other characters.
I am thinking probably I need to create my own font based on "Simsun" font, or there is some attributes or styles I need to add when create the styled document for my JTextPane.
Can anybody give me some help here? Thanks

