为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 Xamarin 表单中的 POST 调用将文件对象发送到 Web api。?

如何使用 Xamarin 表单中的 POST 调用将文件对象发送到 Web api。?

C#
浮云间 2022-06-12 16:26:57
我需要从我的 Xamarin 表单应用程序进行 POST 调用,我需要使用 POST 调用将文件对象上传到 API。有没有办法让它成为可能?
查看完整描述

2 回答

?
吃鸡游戏

TA贡献1829条经验 获得超7个赞

如果您使用 Base64 或 Byte[] 发送文件对象,那么它只允许限制可能高达 2-4 Mb,但如果您的图像比它更大,它将不支持。


因此,解决方案是发布流内容,例如,


var file = await CrossMedia.Current.PickPhotoAsync(new PickMediaOptions

            {

                PhotoSize = PhotoSize.Full,

                CompressionQuality = 100

            });

创建类似MediaFile的对象,public MediaFile AttachedImage;并将文件存储到其中,这样内存流就不会丢失。喜欢,AttachedImage = file


API上的邮政编码,


HttpClient httpClient = new HttpClient();

MultipartFormDataContent mt = new MultipartFormDataContent();

AttachedImage.GetStream().Position = 0;

StreamContent imagePart = new StreamContent(AttachedImage.GetStream());

imagePart.Headers.Add("Content-Type", ImageType);

mt.Add(imagePart, String.Format("file"), String.Format("bk.jpeg"));


requestMessage.Content = mt;



var response = await httpClient.PostAsync("Your URL", mt);

if (response.IsSuccessStatusCode)

{

    var responseString = await response.Content.ReadAsStringAsync();

    var objRootObjectuploadImage = JsonConvert.DeserializeObject<RootObjectuploadImage>(responseString);

    if (objRootObjectuploadImage != null)

    {


    }

    else

    {


    }

}

else

{

    Loading(ActIndicator, false);

    await DisplayAlert(res.LAlert, "webserver not responding.", res.LOk);

}


查看完整回答
反对 回复 2022-06-12
?
明月笑刀无情

TA贡献1828条经验 获得超4个赞

不,不可能发送文件对象。您可以通过转换 Base64 字符串中的文件以 json 格式发送。这是建议的经过验证的解决方案。此链接包含用于从 Base64 来回转换的代码。



查看完整回答
反对 回复 2022-06-12
  • 2 回答
  • 0 关注
  • 189 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信