EvilZone
Programming and Scripting => Java => : Dark Nebulae October 29, 2012, 02:05:50 PM
-
I want to make a program that can convert cgs units into mks units and vice-versa.I am able to convert the magnitude but I don't know how to print the units (such as kg-1m3s-2 for the units of G).I tried it in Ruby,Python,C++ but in all those languages, I faced the same problem.Plz Help.
-
Unicode is your friend. Have a look at superscripts with Unicode: https://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts
Java and Unicode: http://docs.oracle.com/javase/tutorial/i18n/text/unicode.html
In Java you can create a Unicode string like this:
String unicodeExample = new String("\u00ea" + "\u00f1" + "\u00fc");
-
Thanks for your suggestion but I am not so advance in java.In fact,I am at the very basic level in java. Can u plz post a code so that I can understand the working of unicode string or a example of what I require. It would be of great help.Thanks ;) ;)
Your tutorial about wordlist generator is very good. +1 for u.
-
Where do you print the string? Console, GUI (if GUI which component)? Depending on that you might have other possibilities.
I.e.
A JLabel can use HTML tags, so you can easily write superscripts:
JLabel label = JLabel("kg<html><sup>-1</sup></html>");
-
Where do you print the string? Console, GUI (if GUI which component)? Depending on that you might have other possibilities.
I.e.
A JLabel can use HTML tags, so you can easily write superscripts:
JLabel label = JLabel("kg<html><sup>-1</sup></html>");
I use Netbeans IDE.
Thanks,I'll try it.