Xamarin Android:如何从资产文件夹共享PDF文件?通过WhatsApp我得到消息,你选择的文件不是文件

问题描述:

我使用Xamarin Android。我有一个PDF文件存放在Xamarin Android的Assets文件夹中。Xamarin Android:如何从资产文件夹共享PDF文件?通过WhatsApp我得到消息,你选择的文件不是文件

enter image description here

我想分享在WhatsApp的这个文件,但我收到消息:

你选的档案不是一个文件。

enter image description here

我尝试了两种方式:

这是第一种方式

var SendButton = FindViewById<Button>(Resource.Id.SendButton); 
SendButton.Click += (s, e) => 

       { 
       ////Create a new file in the exteranl storage and copy the file from assets folder to external storage folder 
       Java.IO.File dstFile = new Java.IO.File(Environment.ExternalStorageDirectory.Path + "/my-pdf-File--2017.pdf"); 
       dstFile.CreateNewFile(); 

       var inputStream = new FileInputStream(Assets.OpenFd("my-pdf-File--2017.pdf").FileDescriptor); 
       var outputStream = new FileOutputStream(dstFile); 
       CopyFile(inputStream, outputStream); 

       //to let system scan the audio file and detect it 
       Intent intent = new Intent(Intent.ActionMediaScannerScanFile); 
       intent.SetData(Uri.FromFile(dstFile)); 
       this.SendBroadcast(intent); 

       //share the Uri of the file 
       var sharingIntent = new Intent(); 
       sharingIntent.SetAction(Intent.ActionSend); 
       sharingIntent.PutExtra(Intent.ExtraStream, Uri.FromFile(dstFile)); 
       sharingIntent.SetType("application/pdf"); 

       this.StartActivity(Intent.CreateChooser(sharingIntent, "@string/QuotationShare")); 
      }; 

这是第二

//Other way 

      var SendButton2 = FindViewById<Button>(Resource.Id.SendButton2); 
      SendButton2.Click += (s, e) => 
      { 

       Intent intent = new Intent(Intent.ActionSend); 
       intent.SetType("application/pdf"); 

       Uri uri = Uri.Parse(Environment.ExternalStorageDirectory.Path + "/my-pdf-File--2017.pdf"); 
       intent.PutExtra(Intent.ExtraStream, uri); 

       try 
       { 
        StartActivity(Intent.CreateChooser(intent, "Share PDF file")); 
       } 
       catch (System.Exception ex) 
       { 
        Toast.MakeText(this, "Error: Cannot open or share created PDF report. " + ex.Message, ToastLength.Short).Show(); 
       } 
      }; 

在其他的方式,当我通过电子邮件分享照片,PDF文件发送空(损坏的文件)

我能做些什么?

+0

我不需要实例或类似的东西,除非是解决我的特殊情况。 – JotaPardo

解决方案是将文件夹从assets文件夹复制到local storage。然后我们可以共享文件。

首先复制文件

string fileName = "my-pdf-File--2017.pdf"; 

var localFolder = Android.OS.Environment.ExternalStorageDirectory.AbsolutePath; 
var MyFilePath = System.IO.Path.Combine(localFolder, fileName); 

using (var streamReader = new StreamReader(Assets.Open(fileName))) 
{ 
     using (var memstream = new MemoryStream()) 
     { 
       streamReader.BaseStream.CopyTo(memstream); 
       var bytes = memstream.ToArray(); 
       //write to local storage 
       System.IO.File.WriteAllBytes(MyFilePath, bytes); 

       MyFilePath = $"file://{localFolder}/{fileName}"; 

    } 
} 

然后共享文件,从本地存储:

var fileUri = Android.Net.Uri.Parse(MyFilePath); 

var intent = new Intent(); 
intent.SetFlags(ActivityFlags.ClearTop); 
intent.SetFlags(ActivityFlags.NewTask); 
intent.SetAction(Intent.ActionSend); 
intent.SetType("*/*"); 
intent.PutExtra(Intent.ExtraStream, fileUri); 
intent.AddFlags(ActivityFlags.GrantReadUriPermission); 

var chooserIntent = Intent.CreateChooser(intent, title); 
chooserIntent.SetFlags(ActivityFlags.ClearTop); 
chooserIntent.SetFlags(ActivityFlags.NewTask); 
Android.App.Application.Context.StartActivity(chooserIntent); 
+0

这很酷... – GvSharma

您挑选的文件不是一个文件

我有,当我试图分享从资产文件夹通过WhatsApp的一个.pdf文件这个问题,但它给了我同样的错误你的问题:

the file you picked was not a document 

最后我得到了.pdf文件资产文件夹复制到下载文件夹的解决方案,它工作正常:

var pathFile = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryDownloads); 

Java.IO.File dstFile = new Java.IO.File(pathFile.AbsolutePath + "/my-pdf-File--2017.pdf"); 

效果如this

+0

如何将.pdf文件从资产文件夹复制到下载文件夹? – JotaPardo