I am trying to print Japanese texts using Epson TM M30 epos printer using epson epos2 SDK but failed. The printed texts are wrong.
mPrinter = new Printer(Printer.TM_M30, Printer.MODEL_ANK, getActivity().getApplicationContext());
Printing A simple Japanese text
String text = "ダッカ、バングラデシュ";
mPrinter.addTextLang(Printer.LANG_JA);
mPrinter.addTextFont(Printer.FONT_B);
mPrinter.addText(text);
How can I achieve the correct result?