We currently have a crude mechanism to convert numbers to words (e.g. using a few static arrays) and based on the size of the number translating that into an english text. B
Here is a very simple class NumberInWords.java that can have the job done very easily:
String numberInWords = NumberInWords.convertNumberToWords(27546); //twenty seven thousand and five hundred forty six
It's important to know that this class is only capable of converting int datatype.