Windows Phone 7 下载文件并将其保存在手机存储中

发布于 2024-12-11 13:08:35 字数 110 浏览 0 评论 0原文

正在开发一个可以从互联网获取文件的应用程序。我如何在应用程序中从互联网下载并保存“docx”或“wav”文件,并稍后与其他应用程序(如 Office 或 Windows Media Player)一起使用。

am developing an application which can fetch files from internet.. how do i download and save a "docx" or "wav" file from internet within the application and use it later with other application likes office or windows media player.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一城柳絮吹成雪 2024-12-18 13:08:35

您可以在后台下载文件 (即,即使您的应用程序未运行,它们也会继续)。

话虽如此,您应该研究需要支持的文件类型。例如,您可以播放音频文件(如果支持格式)或将其添加到音乐中心,但无法打开Office 中的一个文件。可以集成的文件类型很少,因此在开始编写应用程序之前先进行一些研究,否则您可能会感到失望。

You can download files in the background (ie. they will continue even when your application is not running).

Having said that, you should research the types of files you need to support. For example, you can play an audio file (if the format is supported) or add it to Music hub but you cannot open a file in Office. Very few filetypes can be integrated with, so do some research before you start writing your app otherwise you might be disappointed.

夏花。依旧 2024-12-18 13:08:35

在页面中放置一个图像控件。这里 im1 是控件名称。
它对我有用

string imgurl="http://.........";(path)
Uri addrs=new Uri(imgurl,UriKind.Absolute);
BitmapImage bitmap = new BitmapImage(addrs);
im1.Source = bitmap;

place an image control in your page. here im1 is controls name.
it is working for me

string imgurl="http://.........";(path)
Uri addrs=new Uri(imgurl,UriKind.Absolute);
BitmapImage bitmap = new BitmapImage(addrs);
im1.Source = bitmap;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文