目前网上教程与Demo介绍的都是蓝牙连接热敏打印机(pos机大小的打印机),如果想通过蓝牙连接日常所见到的打印机,进行打印,这些教程或Demo是做不到的。

目前Android的蓝牙并不支持BPP(Basic Printing Profile),所以在Android实现蓝牙打印,通过正常的手段是实现不了的。网上能够搜索的那些教程或demo我都试过了,Google Play上与打印相关的app,也都安装使用过,目前只有PrinterShare可以实现Word、PDF的打印。接下来的的内容就与这个软件有关。

由于Android本身并没有提供相关API,打印机厂商也没有提供Android的驱动,如果自己从头开始开发相关功能,会是一项非常浩大的工程。在经过一段时间的折腾与领导的不停催促后,我们决定使用PrinterShare来实现蓝牙打印功能,使用过支付宝的应该都知道,它会帮助我们安装一个快捷支付的APP,我采用的是相同的方法。我们的应用在使用打印功能时,首先判断PrinterShare是否安装,如果没有安装,就先安装该软件,如果已经安装,就调用PrinterShare的打印Activity,并且把文档的路径传递过去。
1.判断apk是否安装

12345678
public static boolean appIsInstalled(Context context, String pageName) {  try {    context.getPackageManager().getPackageInfo(pageName, 0);    return true;  } catch (NameNotFoundException e) {    return false;  }}

2.安装apk

1234
Intent intent = new Intent(Intent.ACTION_VIEW);File file = FileUtils.getAssetFileToCacheDir(activity,"xxx.apk");intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-archive");activity.startActivity(intent);

3.把Asset下的apk拷贝到sdcard下 /Android/data/你的包名/cache 目录下

 1 2 3 4 5 6 7 8 910111213141516171819202122
publicstatic File getAssetFileToCacheDir(Context context, String fileName) {  try {    File cacheDir = FileUtils.getCacheDir(context);    final String cachePath = cacheDir.getAbsolutePath()+ File.separator + fileName;    InputStream is = context.getAssets().open(fileName);    File file = new File(cachePath);    file.createNewFile();    FileOutputStream fos = new FileOutputStream(file);    byte[] temp = newbyte[1024];    int i = 0;    while ((i = is.read(temp)) > 0) {      fos.write(temp, 0, i);    }    fos.close();    is.close();    return file;    } catch (IOException e) {      e.printStackTrace();    }    return null; }

4.获取sdcard中的缓存目录

12345678
public static File getCacheDir(Context context) {  String APP_DIR_NAME = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Android/data/";  File dir = new File(APP_DIR_NAME + context.getPackageName() + "/cache/");  if (!dir.exists()) {    dir.mkdirs();  }  return dir; }

5.调用printershare打印pdf

12345678
Intent intent = new Intent();ComponentName comp = new ComponentName("com.dynamixsoftware.printershare","com.dynamixsoftware.printershare.ActivityPrintPDF");intent = new Intent();intent.setComponent(comp);intent.setAction("android.intent.action.VIEW");intent.setType("application/pdf");intent.setData(Uri.fromFile(pdf));startActivity(intent);

声明:eoe文章著作权属于作者,受法律保护,转载时请务必以超链接形式附带如下信息

原文作者:灰尘

原文地址:http://my.eoe.cn/isnull/archive/910.html

更多相关文章

  1. android实现录屏小功能
  2. Android webview 实现h5中调用原生系统相册/相机并进行图片压缩
  3. 1.android 通过wifi调用打印机
  4. Android 蓝牙编程之 Java socket编程
  5. 谷歌Android将更新至2.3.6 修复改进语音搜索功能
  6. android 借助AccessibilityService实现模拟点击功能-微信助手(一
  7. Android 消息推送(二)基于 MQTT 协议实现的推送功能
  8. android中使用PrinterShare实现蓝牙打印功能

随机推荐

  1. Android中相机拍照并获取路径
  2. Android——实现在 Service 中播放音乐
  3. android使用webview加载H5页面
  4. c/c++ android 平台交叉编译 {ERROR: Fai
  5. Android(安卓)Studio中统一管理版本号引
  6. Android注册界面设计
  7. Ubuntu下为AndroidStudio编译并使用x264(
  8. Android(安卓)的回调事件详解
  9. Android(安卓)HAL 开发 (4)
  10. android manager 更新 android的有效方法