android模拟打印机服务,Android下的POS打印机调用的简单实现

本文介绍了如何在Android下通过USB接口控制POS打印机,包括获取USB管理器、监听USB设备接入、请求权限、建立连接和发送ESC/POS指令。文章详细讲解了每个步骤,并提供了相关代码示例。
摘要由CSDN通过智能技术生成

本文基于GP58系列,它可以兼容ESC/POS指令集,对EPSON的打印机通用.

Android下的设备调试,如果设备提供了驱动,按照厂家的驱动调试即可;设备未提供驱动,只能按照通用的方法进行调试。这里采用的是调用USB接口来控制打印机输出。

1.首先获取USB管理器

public UsbAdmin(Context context) {

mUsbManager = (UsbManager) context.getSystemService(Context.USB_SERVICE);

mPermissionIntent = PendingIntent.getBroadcast(context, 0, new Intent(ACTION_USB_PERMISSION), 0);

IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);

context.registerReceiver(mUsbReceiver, filter);

}

使用一个延迟意图来接收usb接入时的广播,当广播接收到时,说明有新的设备接入。

添加一个boardcast action

private static final String ACTION_USB_PERMISSION = "com.android.example.USB_PERMISSION";

private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {

public void onReceive(Context context, Intent intent) {

String action = intent.getAction();

if (ACTION_USB_PERMISSION.equals(action)) {

synchronized (this) {

UsbDevice device = (UsbDevice) intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);

if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {

if (device != null) {

setDevice(device);

} else {

Closeusb();

// mDevice = device;

}

} else {

Log.d(TAG, "permission denied for device " + device);

}

}

}

}

};

取到usb设备的引用,android系统会询问你是否允许设备访问,默认为false;当允许了访问之后,会判断USB的引用是否为null,如果不为空则会调用setDevice来创建一个Connection,否则会关闭本次连接。

在setDevice中,我们可以获取设备的功能集(UsbInterface),也可以获取通信通道(UsbEndpoint),同时也创建了host与device的连接用来传输数据。

private void setDevice(UsbDevice device) {

if (device != null) {

UsbInterface intf = null;

UsbEndpoint ep = null;

int InterfaceCount = device.getInterfaceCount();

int j;

mDevice = device;

for (j = 0; j < InterfaceCount; j++) {

int i;

intf = device.getInterface(j);

Log.i(TAG, "接口是:" + j + "类是:" + intf.getInterfaceClass());

if (intf.getInterfaceClass() == 7) {

int UsbEndpointCount = intf.getEndpointCount();

for (i = 0; i < UsbEndpointCount; i++) {

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值