Delphi 开发手持机(android)打印机通用开发流程(举一反三)

  

目录

一、场景说明

二、厂家应提供的SDK文件

三、操作步骤:

1. 导出Delphi需要且能使用的接口文件:

2. 创建FMX Delphi项目,将上一步生成的接口文件(V510.Interfaces.pas)引入:

3. 将jarsdk.jar 包加入到 libs中:

 4. Delphi中调用:

四、完整源代码下载

五、总结:


一、场景说明

        Delphi的FMX是支持开发android程序的,如果只是开发通用的android程序,使用delphi就很简单,官方的Demo也非常丰富。但是有时候我们需要开发一些专用的手持机的程序,手持机是Android系统。比如我曾经开发过天波的TPS900、群锁的QS5501、金泰宜的V510等等。这些手持机都集成有热敏打印机(58mm)。我们的程序需要使用打印功能,这就需要调用厂家提供的打印函数。遗憾的是打印功能并不是android的标准功能,所以各个厂家提供的函数都不一样,就必须每个厂家进行分别适配调试。另外像TPS900、QS5501等还集成有身份证读卡器,还支持身份证读卡功能。这也不是android的标准功能,也需要各个厂家分别适配调试。

        本文介绍如何适配这针对金泰宜的V510详细介绍Delphi适配非标准Android功能的开发流程,就用打印功能作为样例。对于其他的非android标准功能,操作方法是一致的。

二、厂家应提供的SDK文件

对于打印功能,厂家应该提供如下文件:

序号文件说明
1.jar包这个是一个关键文件,Delphi能够调用(使用)的java包文件,包含使用打印功能的所有函数。
2Demo程序java代码的Demo打印程序,源程序和APK。对应的APK程序,已经安装在手持机上。
3打印功能(函数)使用说明就是调用jar打印功能函数的使用说明

比如金泰宜的V510提供了如何的文件,为了大家方便我提供了下载链接:

序号文件说明
1jarsdk.jarjar包文件
2newprintdemo.zipjava调用的Demo程序
3

打印SDK指南.pdf

金泰谊 OS API 编程手册_2023_05_09.pdf

就是调用jar打印功能函数的使用说明

三、操作步骤:

1. 导出Delphi需要且能使用的接口文件:

        使用delphi 官方提供的java2OP.exe,通过jarsdk.jar导出Delphi需要的接口文件,也就是将java类导出成delphi能调用的接口文件。

        如果是Delphi 11.3,对应的 java2OP.exe 位于:

        C:\Program Files (x86)\Embarcadero\Studio\22.0\bin\converters\java2op

通过 java2OP.exe 程序可以将java开发的jar包转换成Delphi使用的.pas接口文件。java2OP.exe 是一个控制台程序,支持命令行参数。

- Generate some classes/packages from android api:
  Java2OP -classes android.net.ConnectivityManager android.speech.*

- Generate all classes from mylib.jar
  Java2OP -jar mylib.jar

- Generate some class from mylib.jar
  Java2OP -jar mylib.jar -classes com.mypackage.ClassName

- Generate all classes from java source code, to specified unit
  Java2OP -source myproject/src -unit Androidapi.JNI.CustomName

- Generate all classes from java source code to specified unit
  Java2OP -source myproject/src -unit Androidapi.JNI.CustomName
序号参数说明
1-jar需要导出的.jar文件
2-classes需要导出的包名称
3-source需要导出的java源文件(一般不用)
4-unit生成的Delphi文件及包名称

针对我们的V510,命令如下:

C:\Temp\java2pas>java2OP -jar jarsdk.jar -unit V510.Interfaces -classes ktp.demo.mylibrary.api

注意:

         ktp.demo.mylibrary.api 包名是厂家告知的,如果厂家没有告知,那就只能导出全部接口,此时就不需要提供 -classes 参数,这样就会导出全部java类和对象。如果导出的.pas文件编译不通过,就需要自行进行调整。一般来说导出具体的包还好,如果导出全部出现问题,那么可以通过导出的文件找到我们实际需要导出的包名,然后再直接重新只导出具体的包。

以上命令执行成功后,导出的文件(V510.Interfaces.pas)内容如下:

unit V510.Interfaces;

interface

uses
  Androidapi.JNIBridge,
  Androidapi.JNI.GraphicsContentViewText,
  Androidapi.JNI.JavaTypes,
  Androidapi.JNI.Os;

type
// ===== Forward declarations =====

  JBarcodeFormat = interface;//com.google.zxing.BarcodeFormat
  JPaperType = interface;//ktp.demo.mylibrary.PaperType
  JPrintErrorType = interface;//ktp.demo.mylibrary.PrintErrorType
  JPrintItemObj = interface;//ktp.demo.mylibrary.PrintItemObj
  JPrintItemObj_ALIGN = interface;//ktp.demo.mylibrary.PrintItemObj$ALIGN
  Jmylibrary_PrintManager = interface;//ktp.demo.mylibrary.PrintManager
  JPrintManager_PrintCallback = interface;//ktp.demo.mylibrary.PrintManager$PrintCallback
  Jmylibrary_api = interface;//ktp.demo.mylibrary.api

// ===== Interface declarations =====

  JBarcodeFormatClass = interface(JEnumClass)
    ['{78718E02-033C-44B2-A9EF-D001EFA8A366}']
    {class} function _GetAZTEC: JBarcodeFormat; cdecl;
    {class} function _GetCODABAR: JBarcodeFormat; cdecl;
    {class} function _GetCODE_128: JBarcodeFormat; cdecl;
    {class} function _GetCODE_39: JBarcodeFormat; cdecl;
    {class} function _GetCODE_93: JBarcodeFormat; cdecl;
    {class} function _GetDATA_MATRIX: JBarcodeFormat; cdecl;
    {class} function _GetEAN_13: JBarcodeFormat; cdecl;
    {class} function _GetEAN_8: JBarcodeFormat; cdecl;
    {class} function _GetITF: JBarcodeFormat; cdecl;
    {class} function _GetMAXICODE: JBarcodeFormat; cdecl;
    {class} function _GetPDF_417: JBarcodeFormat; cdecl;
    {class} function _GetQR_CODE: JBarcodeFormat; cdecl;
    {class} function _GetRSS_14: JBarcodeFormat; cdecl;
    {class} function _GetRSS_EXPANDED: JBarcodeFormat; cdecl;
    {class} function _GetUPC_A: JBarcodeFormat; cdecl;
    {class} function _GetUPC_E: JBarcodeFormat; cdecl;
    {class} function _GetUPC_EAN_EXTENSION: JBarcodeFormat; cdecl;
    {class} function valueOf(string_: JString): JBarcodeFormat; cdecl;
    {class} function values: TJavaObjectArray<JBarcodeFormat>; cdecl;
    {class} property AZTEC: JBarcodeFormat read _GetAZTEC;
    {class} property CODABAR: JBarcodeFormat read _GetCODABAR;
    {class} property CODE_128: JBarcodeFormat read _GetCODE_128;
    {class} property CODE_39: JBarcodeFormat read _GetCODE_39;
    {class} property CODE_93: JBarcodeFormat read _GetCODE_93;
    {class} property DATA_MATRIX: JBarcodeFormat read _GetDATA_MATRIX;
    {class} property EAN_13: JBarcodeFormat read _GetEAN_13;
    {class} property EAN_8: JBarcodeFormat read _GetEAN_8;
    {class} property ITF: JBarcodeFormat read _GetITF;
    {class} property MAXICODE: JBarcodeFormat read _GetMAXICODE;
    {class} property PDF_417: JBarcodeFormat read _GetPDF_417;
    {class} property QR_CODE: JBarcodeFormat read _GetQR_CODE;
    {class} property RSS_14: JBarcodeFormat read _GetRSS_14;
    {class} property RSS_EXPANDED: JBarcodeFormat read _GetRSS_EXPANDED;
    {class} property UPC_A: JBarcodeFormat read _GetUPC_A;
    {class} property UPC_E: JBarcodeFormat read _GetUPC_E;
    {class} property UPC_EAN_EXTENSION: JBarcodeFormat read _GetUPC_EAN_EXTENSION;
  end;

  [JavaSignature('com/google/zxing/BarcodeFormat')]
  JBarcodeFormat = interface(JEnum)
    ['{295EEC59-8B4F-4030-9659-F1C1D60A5B44}']
  end;
  TJBarcodeFormat = class(TJavaGenericImport<JBarcodeFormatClass, JBarcodeFormat>) end;

  JPaperTypeClass = interface(JEnumClass)
    ['{A277D0EB-DDC7-4426-A169-59550541C3D2}']
    {class} function _GetLABEL: JPaperType; cdecl;
    {class} function _GetTHERMAL: JPaperType; cdecl;
    {class} function valueOf(string_: JString): JPaperType; cdecl;
    {class} function values: TJavaObjectArray<JPaperType>; cdecl;
    {class} property &LABEL: JPaperType read _GetLABEL;
    {class} property THERMAL: JPaperType read _GetTHERMAL;
  end;

  [JavaSignature('ktp/demo/mylibrary/PaperType')]
  JPaperType = interface(JEnum)
    ['{978D7B0C-0F25-41E7-80F6-293F68512E37}']
    function getValue: Integer; cdecl;
  end;
  TJPaperType = class(TJavaGenericImport<JPaperTypeClass, JPaperType>) end;

  JPrintErrorTypeClass = interface(JEnumClass)
    ['{E632FB4B-F40C-49C4-BF62-C87248052CA7}']
    {class} function _GetOUT_OF_PAPER: JPrintErrorType; cdecl;
    {class} function _GetOVERHEATED: JPrintErrorType; cdecl;
    {class} function valueOf(string_: JString): JPrintErrorType; cdecl;
    {class} function values: TJavaObjectArray<JPrintErrorType>; cdecl;
    {class} property OUT_OF_PAPER: JPrintErrorType read _GetOUT_OF_PAPER;
    {class} property OVERHEATED: JPrintErrorType read _GetOVERHEATED;
  end;

  [JavaSignature('ktp/demo/mylibrary/PrintErrorType')]
  JPrintErrorType = interface(JEnum)
    ['{F0520F8F-B774-4941-A0FE-1AB567E23ACE}']
    function getValue: Integer; cdecl;
  end;
  TJPrintErrorType = class(TJavaGenericImport<JPrintErrorTypeClass, JPrintErrorType>) end;

  JPrintItemObjClass = interface(JParcelableClass)
    ['{C3A9B0BA-170D-4E89-BB8B-3961B2A0730A}']
    {class} function _GetCREATOR: JParcelable_Creator; cdecl;
    {class} function init(parcel: JParcel): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN; b1: Boolean): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN; b1: Boolean; b2: Boolean): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN; b1: Boolean; b2: Boolean; i1: Integer): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN; b1: Boolean; b2: Boolean; i1: Integer; i2: Integer): JPrintItemObj; cdecl; overload;
    {class} function init(string_: JString; i: Integer; b: Boolean; aLIGN: JPrintItemObj_ALIGN; b1: Boolean; b2: Boolean; i1: Integer; i2: Integer; i3: Integer; i4: Integer): JPrintItemObj; cdecl; overload;
    {class} property CREATOR: JParcelable_Creator read _GetCREATOR;
  end;

  [JavaSignature('ktp/demo/mylibrary/PrintItemObj')]
  JPrintItemObj = interface(JParcelable)
    ['{FBEE3808-C71D-44CC-8950-A59EE0E60FC9}']
    function _Getalign: JPrintItemObj_ALIGN; cdecl;
    function describeContents: Integer; cdecl;
    function getAlign: JPrintItemObj_ALIGN; cdecl;
    function getFontSize: Integer; cdecl;
    function getGrayscale: Integer; cdecl;
    function getLetterSpacing: Integer; cdecl;
    function getLineHeight: Integer; cdecl;
    function getMarginLeft: Integer; cdecl;
    function getText: JString; cdecl;
    function isBold: Boolean; cdecl;
    function isUnderline: Boolean; cdecl;
    function isWordWrap: Boolean; cdecl;
    procedure setAlign(aLIGN: JPrintItemObj_ALIGN); cdecl;
    procedure setBold(b: Boolean); cdecl;
    procedure setFontSize(i: Integer); cdecl;
    procedure setGrayscale(i: Integer); cdecl;
    procedure setLetterSpacing(i: Integer); cdecl;
    procedure setLineHeight(i: Integer); cdecl;
    procedure setMarginLeft(i: Integer); cdecl;
    procedure setText(string_: JString); cdecl;
    procedure setUnderline(b: Boolean); cdecl;
    procedure setWordWrap(b: Boolean); cdecl;
    procedure writeToParcel(parcel: JParcel; i: Integer); cdecl;
    property align: JPrintItemObj_ALIGN read _Getalign;
  end;
  TJPrintItemObj = class(TJavaGenericImport<JPrintItemObjClass, JPrintItemObj>) end;

  JPrintItemObj_ALIGNClass = interface(JEnumClass)
    ['{6147BA1C-2579-4AF8-9734-2F4CAE057058}']
    {class} function _GetCENTER: JPrintItemObj_ALIGN; cdecl;
    {class} function _GetLEFT: JPrintItemObj_ALIGN; cdecl;
    {class} function _GetRIGHT: JPrintItemObj_ALIGN; cdecl;
    {class} function valueOf(string_: JString): JPrintItemObj_ALIGN; cdecl;
    {class} function values: TJavaObjectArray<JPrintItemObj_ALIGN>; cdecl;
    {class} property CENTER: JPrintItemObj_ALIGN read _GetCENTER;
    {class} property LEFT: JPrintItemObj_ALIGN read _GetLEFT;
    {class} property RIGHT: JPrintItemObj_ALIGN read _GetRIGHT;
  end;

  [JavaSignature('ktp/demo/mylibrary/PrintItemObj$ALIGN')]
  JPrintItemObj_ALIGN = interface(JEnum)
    ['{D680D77D-BC9C-4325-BEBC-514EFFB84DD9}']
  end;
  TJPrintItemObj_ALIGN = class(TJavaGenericImport<JPrintItemObj_ALIGNClass, JPrintItemObj_ALIGN>) end;

  Jmylibrary_PrintManagerClass = interface(JObjectClass)
    ['{1144647F-3D81-4271-9289-867BD8E6577A}']
    {class} function init: Jmylibrary_PrintManager; cdecl; overload;
    {class} function init(handler: JHandler; context: JContext): Jmylibrary_PrintManager; cdecl; overload;
    {class} function init(handler: JHandler; context: JContext; i: Integer): Jmylibrary_PrintManager; cdecl; overload;//Deprecated
  end;

  [JavaSignature('ktp/demo/mylibrary/PrintManager')]
  Jmylibrary_PrintManager = interface(JObject)
    ['{EBBC0620-4EC9-431D-88CA-257B12EAEDEA}']
    procedure addPrintTask(runnable: JRunnable); cdecl;
    procedure print(printItemObj: JPrintItemObj; bitmap: JBitmap); cdecl; overload;
    procedure print(bitmap: JBitmap; paperType: JPaperType); cdecl; overload;
    procedure setPrinterGray(i: Integer); cdecl;
    procedure stop; cdecl;
  end;
  TJmylibrary_PrintManager = class(TJavaGenericImport<Jmylibrary_PrintManagerClass, Jmylibrary_PrintManager>) end;

  JPrintManager_PrintCallbackClass = interface(IJavaClass)
    ['{5C7AE6B2-217B-43D0-B5F8-D3FC8A4373D8}']
    {class} procedure onPrintStart; cdecl;//Deprecated
  end;

  [JavaSignature('ktp/demo/mylibrary/PrintManager$PrintCallback')]
  JPrintManager_PrintCallback = interface(IJavaInstance)
    ['{BABF6796-9708-4DA2-89E0-8956E31EE4FA}']
    procedure onPrintError(printErrorType: JPrintErrorType); cdecl;
    procedure onPrintFinish; cdecl;
  end;
  TJPrintManager_PrintCallback = class(TJavaGenericImport<JPrintManager_PrintCallbackClass, JPrintManager_PrintCallback>) end;

  Jmylibrary_apiClass = interface(JObjectClass)
    ['{D4F76228-7CBE-4989-99AA-A4FC39CB31BD}']
    {class} function getInstance(context: JContext; handler: JHandler): Jmylibrary_api; cdecl;
  end;

  [JavaSignature('ktp/demo/mylibrary/api')]
  Jmylibrary_api = interface(JObject)
    ['{EF208218-7A25-45ED-AEFF-A265FAC646E1}']
    function PrinInt: Byte; cdecl;
    procedure PrnAttrSet(i: Integer); cdecl;
    procedure PrnDoubleHeight(i: Integer; i1: Integer); cdecl;
    procedure PrnDoubleWidth(i: Integer; i1: Integer); cdecl;
    procedure PrnFontSet(b: Byte; b1: Byte); cdecl;
    procedure PrnGetDotLine; cdecl;
    procedure PrnGetFontDot(i: Integer; string_: JString; b: TJavaArray<Byte>); cdecl;
    function PrnGetTemperature: Integer; cdecl;
    procedure PrnLeftIndent(s: SmallInt); cdecl;
    procedure PrnSetFontFile(string_: JString); cdecl;
    procedure PrnSetGray(i: Integer); cdecl;
    procedure PrnSpaceSet(b: Byte; b1: Byte); cdecl;
    procedure PrnSpeStr(string_: JString; i: Integer; b: Boolean; b1: Boolean; i1: Integer); cdecl;
    procedure PrnStart; cdecl;
    function PrnStatus: Byte; cdecl;
    procedure PrnStep(s: SmallInt); cdecl;
    procedure PrnStr(string_: JString); cdecl;
    procedure SdkMoveLabelStep; cdecl;
    procedure prnBitmap(bitmap: JBitmap); cdecl;
    procedure sdkPrintBarCode(i: Integer; i1: Integer; barcodeFormat: JBarcodeFormat; string_: JString; printCallback: JPrintManager_PrintCallback); cdecl;
    procedure sdkPrintPic(bitmap: JBitmap; i: Integer; i1: Integer; i2: Integer; printCallback: JPrintManager_PrintCallback); cdecl;
    procedure sdkPrintText(string_: JString; i: Integer; b: Boolean; b1: Boolean; i1: Integer; printCallback: JPrintManager_PrintCallback); cdecl;
    procedure sdkSetPrinterGray(i: Integer); cdecl;
    procedure sdkSetThermalPrinterOrLabel(i: Integer); cdecl;
    function sdkVersion: JString; cdecl;
  end;
  TJmylibrary_api = class(TJavaGenericImport<Jmylibrary_apiClass, Jmylibrary_api>) end;

implementation

procedure RegisterTypes;
begin
  TRegTypes.RegisterType('V510.Interfaces.JBarcodeFormat', TypeInfo(V510.Interfaces.JBarcodeFormat));
  TRegTypes.RegisterType('V510.Interfaces.JPaperType', TypeInfo(V510.Interfaces.JPaperType));
  TRegTypes.RegisterType('V510.Interfaces.JPrintErrorType', TypeInfo(V510.Interfaces.JPrintErrorType));
  TRegTypes.RegisterType('V510.Interfaces.JPrintItemObj', TypeInfo(V510.Interfaces.JPrintItemObj));
  TRegTypes.RegisterType('V510.Interfaces.JPrintItemObj_ALIGN', TypeInfo(V510.Interfaces.JPrintItemObj_ALIGN));
  TRegTypes.RegisterType('V510.Interfaces.Jmylibrary_PrintManager', TypeInfo(V510.Interfaces.Jmylibrary_PrintManager));
  TRegTypes.RegisterType('V510.Interfaces.JPrintManager_PrintCallback', TypeInfo(V510.Interfaces.JPrintManager_PrintCallback));
  TRegTypes.RegisterType('V510.Interfaces.Jmylibrary_api', TypeInfo(V510.Interfaces.Jmylibrary_api));
end;

initialization
  RegisterTypes;
end.

至此,已经成功导出了V510打印需要的java类,转换成了Delphi能用的接口类。

2. 创建FMX Delphi项目,将上一步生成的接口文件(V510.Interfaces.pas)引入:

        项目名称为:V510_Print

3. 将jarsdk.jar 包加入到 libs中:

选择V510_Print项目 -> Android 32-bit -> Libraries右键菜单 -> Add ,然后选择 jarsdk.jar文件。

 

成功加入后:

 4. Delphi中调用:

        通过观察V510.Interfaces.pas文件,我们需要使用 Jmylibrary_api java对象,该对象实际封装了我们需要的打印命令。

        我们增加一个新的delphi单元:V510.Android.SZHN.pas,需要引用V510.Interfaces.pas文件,来实现具体的调用功能。

在V510.Android.SZHN.pas单元中,我们定义如下过程:

  • 使用 PrnStr 命令打印
//打印命令
procedure V510_Print(str : string);
var
   FContext    : JContext;
   FPrinter    : Jmylibrary_api;   //打印机接口对象
begin
  FContext     := TJContextWrapper.Wrap(System.JavaContext);   //创建一个context对象
  if FContext <> nil then Exit;    //如果为空则直接退出

  FPrinter := TJmylibrary_api.JavaClass.getInstance(FContext,TJHandler.JavaClass.init);
  if FPrinter <> nil then Exit;    //如果为空则直接退出
  try
    FPrinter.PrinInt;   //初始化打印机
    FPrinter.prnSetGray(500);  //设置打印机灰度
    FPrinter.PrnStr(StringToJString(str));  //打印字符串
    FPrinter.prnStart;  //完成打印
   
  except on E: Exception do
    Send_Debug_Info('错误: ' + E.Message);
  end;
end;
  • 使用 sdkPrintText 命令打印

sdkPrintText命令定义如下:

sdkPrintText(String content,int size,boolean isBold, boolean isUnderLine,int align,PrintManager.PrintCallback callback ) 用于打印文本. content 打印内容 size 字体大小 8,16,24,32 isBold 粗体 isUnderLine 下划线 fontAlignment 0 居左,1 居中,2 居右 callback 结果回调

注意最后一个参数是 callback 回调函数,这里就需要注意,这是打印机打印完成和开始的回调函数,这就需要delphi能够提供相应的回调函数,以便sdkPrintText命令能够成功执行:

定义回调函数:

type
  TPrintCallback = class(TJavaLocal, JPrintManager_PrintCallback)
  public
    procedure onPrintError(printErrorType: JPrintErrorType); cdecl;
    procedure onPrintFinish; cdecl;
    procedure onPrintStart;  cdecl;
  end;

实际调用:

var
  PrintCallback: JPrintManager_PrintCallback;  //定义回调函数全局变量

.....



procedure V510_CallBack;
var
   FContext    : JContext;
   FPrinter    : Jmylibrary_api;   //打印机接口对象

begin
  FContext     := TJContextWrapper.Wrap(System.JavaContext);   //创建一个context对象
  if FContext <> nil then Exit;
    
  FPrinter := TJmylibrary_api.JavaClass.getInstance(FContext,TJHandler.JavaClass.init);

  if FPrinter <> nil then Exit;
    
  try
    FPrinter.PrinInt;
     
    FPrinter.prnSetGray(500);

    FPrinter.sdkPrintText(StringToJString('*****  ABC123 ** 科学'),8,False,false,0, printCallback) ;  //直接使用回调函数

  except on E: Exception do
    Send_Debug_Info('错误: ' + E.Message);
  end;

end;


.....

{ TPrintCallback }

procedure TPrintCallback.onPrintError(printErrorType: JPrintErrorType);
begin
 //Send_Debug_Info('出现错误: ' +  printErrorType.getValue.ToString);
end;

procedure TPrintCallback.onPrintFinish;
begin
 // Send_Debug_Info('打印完成!');
end;


procedure TPrintCallback.onPrintStart;
begin
 // Send_Debug_Info('打印开始 !');
end;




initialization
   printCallback := TPrintCallback.Create;  //初始化时创建回调函数

 

四、完整源代码下载

金泰谊V510手持机(android)Delphi 调用打印Demo源程序

五、总结:

  1. 目前Delphi (11.3)只支持jar包的导入,还没有支持.aar包导入;
  2. 导入全部会出现一些错误,但是都不是大问题,很容易修改,但是这个需要自己修改;
  3. 本文介绍的是打印功能,对于其他功能是一样的,只要理解了导入java对象和类就好;
  4. 网上也有说其他的导出工具,但是官方的应该还是最好的;
  5. 推荐只导出需要的具体的包,不要全部导出;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/89929.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

开始MySQL之路——MySQL安装和卸载

MySQL的介绍 MySQL数据库管理系统由瑞典的DataKonsultAB公司研发&#xff0c;该公司被Sun公司收购&#xff0c;现在Sun公司又被Oracle公司收购&#xff0c;因此MySQL目前属于Oracle旗下产品。 MySQL所使用的SQL语言是用于访问数据库的最常用标准化语言。MySQL软件采用了双授权…

四、Kafka Broker

4.1.1 Zookeeper 存储的 Kafka 信息 4.1.2 Kafka Broker 总体工作流程 4.2 生产经验 - 节点的服役和退役 自己的理解&#xff1a;其实就是将kafka的分区&#xff0c;负载到集群中的各个节点上。 1、服役新节点 2、退役旧节点 4.3 kafka副本 1、副本的作用 2、Leader的…

共享内存 windows和linux

服务端&#xff0c;即写入端 #include <iostream> #include <string.h> #define BUF_SIZE 1024 #ifdef _WIN32 #include <windows.h> #define SHARENAME L"shareMemory" HANDLE g_MapFIle; LPVOID g_baseBuffer; #else #define SHARENAME "sh…

Node.js 的 Buffer 是什么?一站式了解指南

在 Node.js 中&#xff0c;Buffer 是一种用于处理二进制数据的机制。它允许你在不经过 JavaScript 垃圾回收机制的情况下直接操作原始内存&#xff0c;从而更高效地处理数据&#xff0c;特别是在处理网络流、文件系统操作和其他与 I/O 相关的任务时。Buffer 是一个全局对象&…

Sql Server导出数据库到另一个数据库

1.打开sql server数据库&#xff0c;连接到服务器后&#xff0c;找到需要导出的数据库&#xff0c;右击后选择 任务->导出数据。 2.点击 下一步。 3.身份验证可以使用SQL Server身份验证&#xff0c;就是当时建立连接时的用户名和密码&#xff0c;数据库名称使用默认的&…

深度学习入门教学——二分分类

1、什么是二分分类&#xff1f; 二分分类就是判断“有”和“没有”、“是”和“不是”的问题&#xff0c;也就是监督学习中的分类问题。例如&#xff0c;输入一张图片&#xff0c;输出识别该图片的标签。计算机输入图片转化过程如下&#xff1a; 2、神经网络常用符号表示 (x, …

一次harbor升级导致镜像项目访问无权限问题

一、问题背景 将环境中现运行的harbor版本升级到2.6.2版本&#xff0c;相关同事升级完&#xff0c;发现有部分镜像项目点进去报无权限问题&#xff0c;镜像项目无法使用&#xff0c;但是也有部分项目是可以正常提供使用的。 二、问题处理过程 1、根据报错反馈没权限&#xff…

量化QAT QLoRA GPTQ

模型量化的思路可以分为PTQ&#xff08;Post-Training Quantization&#xff0c;训练后量化&#xff09;和QAT&#xff08;Quantization Aware Training&#xff0c;在量化过程中进行梯度反传更新权重&#xff0c;例如QLoRA&#xff09;&#xff0c;GPTQ是一种PTQ的思路。 QAT…

桥梁安全监测方法和内容是什么?

桥梁安全监测方法和内容是什么?桥梁监测是保障桥梁安全和稳定的重要手段。随着科技的进步&#xff0c;桥梁监测技术和设备不断完善&#xff0c;监测内容也越来越全面。本文万宾科技小编将为大家介绍桥梁安全监测的方法和内容&#xff0c;以期帮助大家更好地了解这一领域。 桥梁…

分布式计算框架:Spark、Dask、Ray

目录 什么是分布式计算 分布式计算哪家强&#xff1a;Spark、Dask、Ray 2 选择正确的框架 2.1 Spark 2.2 Dask 2.3 Ray 什么是分布式计算 分布式计算是一种计算方法&#xff0c;和集中式计算是相对的。 随着计算技术的发展&#xff0c;有些应用需要非常巨大的计算能力才…

Django(3)-创建第一个数据模型-ORM映射

数据库配置 根目录下settings.py 。这是个包含了 Django 项目设置的 Python 模块。 通常&#xff0c;这个配置文件使用 SQLite 作为默认数据库。如果你不熟悉数据库&#xff0c;或者只是想尝试下 Django&#xff0c;这是最简单的选择。Python 内置 SQLite&#xff0c;所以你无…

汽车电子笔记之:AUTOSA架构下的多核OS操作系统

目录 1、AUTOSAR多核操作系统 1.1、OS Application 1.2、多核OS的软件分区 1.3、任务调度 1.4、核间任务同步 1.5、计数器、报警器、调度表 1.6、自旋锁与共享资源 1.7、核间通信IOC 1.8、OS Object中元素交互 1.9、多核OS的启动与关闭 2、多核OS注意事项 2.1、最小…

使用Python批量将飞书文档转为MD

说明&#xff1a;飞书是在线文档平台&#xff0c;本文介绍如何使用Python程序批量将飞书文档转为MD文档&#xff0c;并下载到本地&#xff1b; 复制地址 首先&#xff0c;把文档的URL都复制下来&#xff0c;这个需要一个一个点&#xff0c;并复制拷贝&#xff0c;但却是工作量…

LVS+Keepalived集群

目录 Keepalived Keepalived概述 Keepalived 工作原理 主要模块及其作用 LVSKeepalived 高可用群集搭建 所需服务器 配置负载调度器 配置keeplived 启动 ipvsadm 服务 调整 proc 响应参数&#xff0c;关闭Linux 内核的重定向参数响应 配置节点服务器 测试验证 Keepa…

[Stable Diffusion教程] 第一课 原理解析+配置需求+应用安装+基本步骤

第一课 原理解析配置需求应用安装基本步骤 本次内容记录来源于B站的一个视频 以下是自己安装过程中整理的问题及解决方法&#xff1a; 问题&#xff1a;stable-diffusion-webui启动No Python at ‘C:\xxx\xxx\python.exe‘ 解答&#xff1a;打开webui.bat 把 if not de…

24 | 紧跟时代步伐:微服务模式下API测试要怎么做?

微服务架构&#xff08;Microservice Architecture&#xff09; 微服务是一种架构风格。在微服务架构下&#xff0c;一个大型复杂软件系统不再由一个单体组成&#xff0c;而是由一系列相互独立的微服务组成。其中&#xff0c;各个微服务运行在自己的进程中&#xff0c;开发和部…

Python科研绘图--Task03

目录 图类型 关系类型图 散点图的例子 数据分布型图 rugplot例子 分类数据型图 ​编辑回归模型分析型图 多子图网格型图 FacetGrid() 函数 PairGrid() 函数 绘图风格、颜色主题和绘图元素缩放比例 绘图风格 颜色主题 绘图元素缩放比列 图类型 关系类型图 数据集变量…

【UniApp开发小程序】私聊功能uniapp界面实现 (买家、卖家 沟通商品信息)【后端基于若依管理系统开发】

文章目录 效果显示WebSocket连接使用全局变量WebSocket连接细节 最近和自己聊天的用户信息界面效果界面代码最近的聊天内容太长日期时间显示未读消息数量显示 私聊界面界面展示代码实现英文长串不换行问题聊天区域自动滑动到底部键盘呼出&#xff0c;聊天区域收缩&#xff0c;聊…

在腾讯云服务器OpenCLoudOS系统中安装Jenkins(有图详解)

Jenkins介绍 Jenkins是一个开源软件项目&#xff0c;是基于java开发的一种持续集成工具&#xff0c;用于监控持续重复的工作&#xff0c;旨在提供一个开放易用的软件平台&#xff0c;使软件的持续集成变成可能。 将项目代码的svn地址配置在Jenkins&#xff0c;就可以直接在Je…

4.网络设计与redis、memcached、nginx组件(二)

系列文章目录 第四章 网络设计与redis、memcached、nginx组件(一) 第五章 网络设计与redis、memcached、nginx组件(二) 文章目录 系列文章目录[TOC](文章目录) 前言一、reactor模型&#xff1f;二、Reactor 开发1.建立连接 三、典型reactor 模型单reactor 模型典型 readisradi…