hears Active Member Licensed User Longtime User Dec 9, 2017 #1 this code for send to printer ,in java project,work good. B4X: public void PrintTest2() { String msg = ""; msg = "产经营和服务于一体的高技术12345"; SendDataString(msg); } after make B4A libary,only can print 12345. the other character is print wrong,how to do ?
this code for send to printer ,in java project,work good. B4X: public void PrintTest2() { String msg = ""; msg = "产经营和服务于一体的高技术12345"; SendDataString(msg); } after make B4A libary,only can print 12345. the other character is print wrong,how to do ?
Erel B4X founder Staff member Licensed User Longtime User Dec 10, 2017 #2 Don't include the string in your Java code. Pass it from B4A.
hears Active Member Licensed User Longtime User Dec 10, 2017 #3 thank you ,i have try,after send from B4A, it is work now.