How to use Special Chars in Java/Eclipse

后端 未结 7 1200
被撕碎了的回忆
被撕碎了的回忆 2020-12-01 10:39

How can I use/display characters like ♥, ♦, ♣, or ♠ in Java/Eclipse?

When I try to use them directly, e.g. in the source code, Eclipse cannot save the file.

相关标签:
7条回答
  • 2020-12-01 11:11

    It can be solved by setting encoding in eclipse:

    1st way:

    At the menu select File-->Properties and then at the "Text file encoding" section: Select Other radio, Select UTF-8 from combo -> Lastly click OK button

    2nd way:

    Right click on specific file (say Test.java) -> Properties. In Text file encoding section: Select Other radio, Select UTF-8 from combo -> Lastly click OK button

    3rd way:

    If you want to make this change for all your project go at Window-->Preferences--> General--> Workspace . In Text file encoding section: Select Other radio, Select UTF-8 from combo -> Lastly click OK button

    0 讨论(0)
  • 2020-12-01 11:12

    Finding the unicode escape sequence: see these Unicode charts. Your characters are in the Misc. Symbols chart, \u2660 and up.

    0 讨论(0)
  • 2020-12-01 11:14

    In Eclipse:

    1. Go to Window -> Preferences -> General -> Workspace -> TextFileEncoding
    2. Set it to UTF-8
    0 讨论(0)
  • 2020-12-01 11:19

    The problem is that the characters you are using cannot be represented in the encoding you have the file set to (Cp1252). The way I see it, you essentially have two options:

    Option 1. Change the encoding. According to IBM, you should set the encoding to UTF-8. I believe this would solve your problem.

    • Set the global text file encoding preference Workbench > Editors to "UTF-8".
    • If an encoding other than UTF-8 is required, set the encoding on the individual file rather than using the global preference setting. To do this use the File > Properties > Info menu selection to set the encoding on an individual file.

    Option 2. Remove the characters which are not supported by the "Cp1252" character encoding. You can replace the unsupported characters with Unicode escape sequences (\uxxxx). While this would allow you to save your file, it is not necessarily the best solution.

    For the characters you specified in your question here are the Unicode escape sequences:

    ♥ \u2665
    ♦ \u2666
    ♣ \u2663
    ♠ \u2660
    
    0 讨论(0)
  • 2020-12-01 11:22

    Expanding a bit on @Joe Lencioni answer

    You can use AnyEdit Eclipse plugin (install-able from Eclipse marketplace) to easily convert Unicode text into Java Unicode escapes:

    • Select char/text with non-ASCII characters
    • right-click
    • Convert > To Unicode Notation

    One minor caveat is that AnyEdit wants to save the file first which obviously is disallowed by Eclipse until you fix your text.

    0 讨论(0)
  • 2020-12-01 11:32

    Windows Menu –> Preferences –> General (expand it) –> Workspace (click on it). Look for a box “Text File Encoding”. Default will be “Cp1252″. Change radio to select other and select “UTF-8″ from combo box.

    0 讨论(0)
提交回复
热议问题