翼度科技»论坛 编程开发 .net 查看内容

.NET MAUI Android 对接商米移动手持终端打印JAVA SDK

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
一、前言(整个流程除了调整打印模板位子,操作下来还是挺快的 几分钟就搞定,文章图片比较多大家可能感觉操作比较麻烦,其实挺简单的)

  因甲方需求,需要对现项目进行升级,需要增加移动手持终端进行巡检,巡检时还需要对商品进行抽检并打印热敏不干胶标签进行贴到抽样样品上。在这样的背景下便在JD进行了采样,进行技术性研究。本文章将一步一步教大家如何使用.NET MAUI 来集成java printerx 来实现使用MAUI 在移动终端上进行标签打印。 下方是采购的移动终端设备。

二、下载AAR 开发SDK

 通过官方文档我们得知 设备的打印SDK包是 printerx,开发包是JAVA开发的,这种情况如何使用MAUI进行对接呢?这难不倒我们,我们今天就用.NET MAUI 来进行集成 printerx

  1、打开https://mvnrepository.com 网站,搜索 printerx
   https://mvnrepository.com/search?q=printerx 

 2、点击 printerx 进去后,我们选择最新版 “1.0.14

3、然后点击 View All ,将看到如下界面。

 4、第一个 printerx-1.0.14.aar 是我们需要下载的文件,点击将来文件下载到本地桌面。

三、在MAUI中集成AAR SDK

  1、是用VS2022 新建MAUI项目(.NET 7),然后添加新项目“Android 绑定库(Xmarin)”,没有“Android 绑定库(Xmarin)”的在installer中选择安装 Xmarin。


2、打开“Android 绑定库(Xmarin)”项目,打开 Jars文件夹,将之前下载的 printerx-1.0.14.aar 拷贝进文件夹内。

 3、右击 printerx-1.0.14.aar 选择属性,将生成操作选择 “LibraryProjectZip”。

 4、查看项目属性,和我的保持一致。

 5、将MAUI项目中 安卓端引用 “Android 绑定库(Xmarin)”项目。

6、应为前几次测试的时候,WIndows、IOS端有报错提示不兼容发生,我将其他端都删掉了,只保留了安卓端。
四、调试移动终端

1、为了方便测试 我把代码写到了"MainPage.xaml.cs",MAUI自动生成的代码没有删除,也再文件中。以下是完整代码,应为是技术性测试所以代码写的不是很规范,打印标签的位子也是写的很随意,正式放到项目中将优化。
  1. using Android.Icu.Text;
  2. using Com.Sunmi.Printerx;
  3. using Java.Interop;
  4. using Java.Util;
  5. namespace MauiApp1
  6. {
  7.     public partial class MainPage : ContentPage
  8.     {
  9.         int count = 0;
  10.         public MainPage()
  11.         {
  12.             InitializeComponent();
  13.         }
  14.         public Com.Sunmi.Printerx.PrinterSdk.Printer Printer;
  15.         private void OnCounterClicked(object sender, EventArgs e)
  16.         {
  17.             var listen = new PrinterListen();
  18.             Com.Sunmi.Printerx.PrinterSdk.Instance.GetPrinter(
  19.                 Android.App.Application.Context, listen
  20.                 );
  21.            
  22.             count++;
  23.             if (count == 1)
  24.                 CounterBtn.Text = $"Clicked {count} time";
  25.             else
  26.                 CounterBtn.Text = $"Clicked {count} times";
  27.             SemanticScreenReader.Announce(CounterBtn.Text);
  28.         }
  29.         public class PrintResult2 : Com.Sunmi.Printerx.Api.PrintResult
  30.         {
  31.             
  32.             public override void OnResult(int p0, string p1)
  33.             {
  34.                
  35.             }
  36.         }
  37.        //获取打印机监
  38.         public class PrinterListen : Java.Lang.Object, Com.Sunmi.Printerx.PrinterSdk.IPrinterListen
  39.         {
  40.             public Com.Sunmi.Printerx.PrinterSdk.Printer Printer;
  41.             
  42.             public void OnDefPrinter(PrinterSdk.Printer p0)
  43.             {
  44.                 this.Printer  = p0;//获取到打印机
  45.                
  46.                 var api = Printer.CanvasApi();
  47.                
  48.                 api.InitCanvas(Com.Sunmi.Printerx.Style.BaseStyle.Style.SetWidth(52*8).SetHeight(35*8));//初始化
  49.                 api.RenderArea(Com.Sunmi.Printerx.Style.AreaStyle.Style.SetWidth(49*8).SetHeight(33*8)//设置打印区域
  50.                     .SetStyle(Com.Sunmi.Printerx.Enums.Shape.RectWhite)
  51.                     .SetPosX(0).SetPosY(0));
  52.                 api.RenderText("标题",  //打印字符串
  53.                     Com.Sunmi.Printerx.Style.TextStyle.Style
  54.                    .SetAlign(Com.Sunmi.Printerx.Enums.Align.Center)
  55.                     .SetTextSize(32)
  56.                     .SetPosX(208).SetPosY(16)
  57.                     );
  58.                 api.RenderText("商品名称(车牌号)",
  59.                  Com.Sunmi.Printerx.Style.TextStyle.Style
  60.                      .SetAlign(Com.Sunmi.Printerx.Enums.Align.Center)
  61.                  .SetTextSize(30)
  62.                  .SetPosX(208).SetPosY(40 + 10)
  63.                  .EnableBold(true)
  64.                  );
  65.                 api.RenderBarCode("2311202003400013",//打印条形码
  66.                    Com.Sunmi.Printerx.Style.BarcodeStyle.Style
  67.                        .SetAlign(Com.Sunmi.Printerx.Enums.Align.Center)
  68.                    .SetPosX(208).SetPosY(38+12+30)
  69.                    .SetBarHeight(80).SetDotWidth(3)
  70.                    .SetWidth(350)
  71.                    );
  72.                 api.RenderText("2311202003400013",
  73.                   Com.Sunmi.Printerx.Style.TextStyle.Style
  74.                       .SetAlign(Com.Sunmi.Printerx.Enums.Align.Center)
  75.                  // .SetTextSize(24)
  76.                   .SetPosX(208).SetPosY(38+32+95)
  77.                   );
  78.                 api.RenderText("商户姓名:姓名007",
  79.                 Com.Sunmi.Printerx.Style.TextStyle.Style
  80.                   //  .SetAlign(Com.Sunmi.Printerx.Enums.Align.Center)
  81.                 // .SetTextSize(20)
  82.                  .EnableBold(true)
  83.                 .SetPosX(30).SetPosY(38 + 32 + 100  +23)
  84.                 );
  85.                 api.RenderText("抽样时间:2023-11-02 13:00",
  86.             Com.Sunmi.Printerx.Style.TextStyle.Style
  87.                   .EnableBold(true)
  88.             .SetPosX(30).SetPosY(38 + 32 + 100  +25+25)
  89.             );
  90.                 var printReuslt = new PrintResult2();
  91.                 api.PrintCanvas(1, printReuslt);
  92.             }
  93.             public void OnPrinters(IList<PrinterSdk.Printer> p0)
  94.             {
  95.                 this.Printer.Dispose();
  96.             }
  97.         }
  98.     }
  99. }
复制代码
五、完成对接

 通过以上操作便可以打印出标签了,以下是测试效果。
 

 

来源:https://www.cnblogs.com/leelong/archive/2023/11/26/17856422.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具