B4X FEED equivalent from java to b4a

اطلاعات موضوع

درباره موضوع در تاریخ, در دسته b4xfeed ایجاد شده و آغاز کننده آن practicalsoftمی باشد و موضوع آن: equivalent from java to b4a است. این موضوع تا کنون 35 بازدید کننده و, 0 پاسخ داشته و 0 بار پسندیده شده...
نام دسته b4xfeed
نام موضوع equivalent from java to b4a
آغاز کننده موضوع practicalsoft
تاریخ شروع
پاسخ‌ها
0
بازدیدها
35
پسندها
0
آخرین ارسال توسط PracticalSoft
Jun 6, 2020
11,559
4,422
What is the equivalent b4a code for the java code shown below? I'm not familiar with Java. This is a code for barcode printing for bixolon printer
it has a library bixolon_printer_v2.1.4.jar. Please help me

import com.bxl.config.editor.BXLConfigLoader;
import jpos.config.JposEntry;
import jpos.POSPrinter;
import jpos.POSPrinterConst;
import com.bxl.BXLConst;
try
{
POSPrinter posPrinter = new POSPrinter(this);
posPrinter.open(“SPP-R200III”);
posPrinter.claim(5000);
posPrinter.setDeviceEnabled(true);
posPrinter.printBarCode(POSPrinterConst.PTR_S_RECEIPT,
“123456789”,
POSPrinterConst.PTR_BCS_QRCODE,
8,
8,
POSPrinterConst.PTR_BC_CENTER,
POSPrinterConst.PTR_BC_TEXT_BELOW);
}
catch(JposException e)
{
e.printStackTrace();
}

 

عقب
بالا