只要注意一个汉字占用两个个字就可以了,删除的时候要按两下del键

解决方案 »

  1.   


    在菜單:Configure->Options->出現"Options"窗口,在"Editor"選項下有:"Java,Plain、html"等選項,打開"Java"項目,找到"Font" 把字段裡默認的"Courier"字體改成"Courier New"字樣,其他的幾個項目都如此
      

  2.   

    这是由于JCreator语法文件的问题,修改一下它的语法文件java.syn,把其中的
    <extcommentstart>//</extcommentstart>
    <extcommentend>//</extcommentend>
    <extcommentstart2>//</extcommentstart2>
    <extcommentend2>//</extcommentend2>
    <commentstart>//</commentstart>
    <commentend>//</commentend>
    <stringstart>&quot;</stringstart>
    <stringend>&quot;</stringend>
    <charstart>&quot;</charstart>
    <charend>&quot;</charend>
    改成下面这样
    <extcommentstart/>
    <extcommentend/>
    <extcommentstart2/>
    <extcommentend2/>
    <commentstart/>
    <commentend/>
    <stringstart/>
    <stringend/>
    <charstart/>
    <charend/>
    这样就可以正确显示中文了,但是由于语法文件被改变所以改完以后程序中的注释和字符串的颜色就不如以前顺眼了