如何在.NET MAUI项目中与Android项目java互操作?

wvyml7n5  于 2023-06-27  发布在  Android
关注(0)|答案(1)|浏览(345)

我尝试通过.NET MAUI Blazor混合项目打印文档。当我在做的时候,我看到了与android os互操作的地方在platform/android文件夹根目录中。下面是我在开发打印代码时遵循的文档,

  1. Printing Photos in android Print manager
  2. Printing Custom Document in android
    在android中打印照片是成功的,但现在我想打印自定义文档,因为我想打印PDF。下面是成功的图像打印和不成功的PDF打印的代码。PDF和图像都可以转换为base64字符串。
    下面是.NET中接口代码
  1. namespace PrintMAUI.Services
  2. {
  3. public interface IPrintCalller
  4. {
  5. Task<bool> printImage(byte[] bitmapBytes);
  6. Task<bool> printPDF(byte[] pdfBytes);
  7. }
  8. }

为Android平台创建的类

  1. namespace PrintMAUI.Platforms
  2. {
  3. public class PrintCaller : MauiAppCompatActivity, IPrintCalller
  4. {
  5. public async Task<bool> printImage(byte[] bitmapBytes)
  6. {
  7. try
  8. {
  9. //Microsoft.Maui.ApplicationModel.Platform.CurrentActivity.Context
  10. PrintHelper photoPrinter = new PrintHelper(Platform.CurrentActivity);
  11. photoPrinter.ScaleMode = PrintHelper.ScaleModeFill;
  12. Bitmap bitmap = await BitmapFactory.DecodeByteArrayAsync(bitmapBytes, 0, bitmapBytes.Length);
  13. photoPrinter.PrintBitmap("Testing Print for BL", bitmap);
  14. return true;
  15. }catch (Exception ex)
  16. {
  17. return false;
  18. }
  19. }
  20. public async Task<bool> printPDF(byte[] pdfBytes)
  21. {
  22. try
  23. {
  24. PrintManager printManager = Platform.CurrentActivity.GetSystemService(Android.Content.Context.PrintService).JavaCast<PrintManager>();
  25. string jobName = "simple Print Job";
  26. printManager.Print(jobName, new CustomPrintDocumentAdapter(pdfBytes), null);
  27. return true;
  28. }catch(Exception ex)
  29. {
  30. return false;
  31. }
  32. }
  33. }
  34. }

自定义打印适配器

  1. using Android.Graphics.Pdf;
  2. using Android.OS;
  3. using Android.Print;
  4. using Android.Print.Pdf;
  5. using Android.Runtime;
  6. using Java.IO;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using static Android.Print.PrintAttributes;
  13. namespace PrintMAUI.Platforms
  14. {
  15. public class CustomPrintDocumentAdapter : PrintDocumentAdapter
  16. {
  17. //private byte[] data;
  18. private int totalPages = 0;
  19. PrintedPdfDocument pdfDocument;
  20. public CustomPrintDocumentAdapter(byte[] data)
  21. {
  22. //this.data = data;
  23. }
  24. public override void OnLayout(PrintAttributes oldAttributes, PrintAttributes newAttributes, CancellationSignal cancellationSignal, LayoutResultCallback callback, Bundle extras)
  25. {
  26. pdfDocument = new PrintedPdfDocument(Platform.CurrentActivity,newAttributes);
  27. if (cancellationSignal.IsCanceled)
  28. {
  29. callback.OnLayoutCancelled();
  30. return;
  31. }
  32. int pages = computePageCount(newAttributes);
  33. if(pages > 0)
  34. {
  35. PrintDocumentInfo pdi = new PrintDocumentInfo.Builder("PDF.pdf")
  36. .SetContentType(Android.Print.PrintContentType.Document)
  37. .SetPageCount(pages)
  38. .Build();
  39. callback.OnLayoutFinished(pdi, true);
  40. }
  41. else
  42. {
  43. callback.OnLayoutFailed("Calculations Failed!");
  44. }
  45. }
  46. private bool containsPage(PageRange[] pages,int num)
  47. {
  48. //TODO: you have to do it
  49. return true;
  50. }
  51. public override void OnWrite(PageRange[] pages, ParcelFileDescriptor destination, CancellationSignal cancellationSignal, WriteResultCallback callback)
  52. {
  53. for (int i = 0; i < totalPages; i++)
  54. {
  55. // Check to see if this page is in the output range.
  56. if (containsPage(pages, i))
  57. {
  58. // If so, add it to writtenPagesArray. writtenPagesArray.size()
  59. // is used to compute the next output page index.
  60. //writtenPagesArray.append(writtenPagesArray.size(), i);
  61. PdfDocument.Page page = pdfDocument.StartPage(i);
  62. // check for cancellation
  63. if (cancellationSignal.IsCanceled)
  64. {
  65. callback.OnWriteCancelled();
  66. pdfDocument.Close();
  67. pdfDocument = null;
  68. return;
  69. }
  70. // Rendering is complete, so page can be finalized.
  71. pdfDocument.FinishPage(page);
  72. }
  73. }
  74. // Write PDF document to file
  75. try
  76. {
  77. //FileOutputStream stream = new FileOutputStream(destination.FileDescriptor);
  78. FileStream stream = new FileStream((string)destination.FileDescriptor, FileMode.Create, FileAccess.Write);
  79. pdfDocument.WriteTo(stream);
  80. }
  81. catch (Exception e)
  82. {
  83. callback.OnWriteFailed(e.ToString());
  84. return;
  85. }
  86. finally
  87. {
  88. pdfDocument.Close();
  89. pdfDocument = null;
  90. }
  91. //PageRange[] writtenPages = computeWrittenPages();
  92. /// Signal the print framework the document is complete
  93. callback.OnWriteFinished(pages);
  94. }
  95. private int computePageCount(PrintAttributes printAttributes)
  96. {
  97. int itemsPerPage = 4;
  98. MediaSize pageSize = printAttributes.GetMediaSize();
  99. if (!pageSize.IsPortrait)
  100. {
  101. itemsPerPage = 6;
  102. }
  103. int printItemCount = 1;
  104. return (int)Math.Ceiling((double)printItemCount/itemsPerPage);
  105. }
  106. }
  107. }

我做了什么

1.首先,我尝试使用打印机SDK创建单独的项目,并从MAUI应用程序调用它。但由于政策限制,它没有成功。
1.然后我尝试将打印机SDK添加到MAUI项目中。它不工作
1.然后我试着用这种方法。我试着用android打印管理器打印文档。打印图像时成功。但我想从它的字节数组打印PDF。

我的期待

customprintdocumentadapter类中的这些行出现了无法修复的问题。无论如何我都有选角问题

  1. FileStream stream = new FileStream((string)destination.FileDescriptor, FileMode.Create, FileAccess.Write);
  2. pdfDocument.WriteTo(stream);

我想知道怎么补救?
第二件事是我认为这段代码可能有一些必须理解的蓬茨如何customprintdocumentadapter支持打印自定义文档。有人能解释一下吗
google文档有这个代码

  1. writtenPagesArray.append(writtenPagesArray.size(), i);

但我找不到它从哪里来。

x6h2sr28

x6h2sr281#

实际上不想创建PrintedPdfDocument对象。我可以像这样把我的字节数组传递给文件流

  1. public class CustomPrintDocumentAdapter : PrintDocumentAdapter
  2. {
  3. private byte[] data;
  4. public CustomPrintDocumentAdapter(byte[] data)
  5. {
  6. this.data = data;
  7. }
  8. public override void OnLayout(PrintAttributes oldAttributes, PrintAttributes newAttributes, CancellationSignal cancellationSignal, LayoutResultCallback callback, Bundle extras)
  9. {
  10. if (cancellationSignal.IsCanceled)
  11. {
  12. callback.OnLayoutCancelled();
  13. return;
  14. }
  15. int pages = 1;
  16. if (pages > 0)
  17. {
  18. PrintDocumentInfo pdi = new PrintDocumentInfo.Builder("PDF.pdf")
  19. .SetContentType(Android.Print.PrintContentType.Document)
  20. .SetPageCount(pages)
  21. .Build();
  22. callback.OnLayoutFinished(pdi, true);
  23. }
  24. else
  25. {
  26. callback.OnLayoutFailed("Calculations Failed!");
  27. }
  28. }
  29. public override void OnWrite(PageRange[] pages, ParcelFileDescriptor destination, CancellationSignal cancellationSignal, WriteResultCallback callback)
  30. {
  31. try
  32. {
  33. FileOutputStream stream = new FileOutputStream(destination.FileDescriptor);
  34. stream.Write(data);
  35. }
  36. catch (Exception e)
  37. {
  38. callback.OnWriteFailed(e.ToString());
  39. return;
  40. }
  41. callback.OnWriteFinished(pages);
  42. }
  43. }

然后问题就解决了

展开查看全部

相关问题