Windows Phone 7 下载文件并将其保存在手机存储中
正在开发一个可以从互联网获取文件的应用程序。我如何在应用程序中从互联网下载并保存“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在后台下载文件 (即,即使您的应用程序未运行,它们也会继续)。
话虽如此,您应该研究需要支持的文件类型。例如,您可以播放音频文件(如果支持格式)或将其添加到音乐中心,但无法打开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.
在页面中放置一个图像控件。这里 im1 是控件名称。
它对我有用
place an image control in your page. here im1 is controls name.
it is working for me