Adding files to WP7 isolated storage from Visual Studio?

后端 未结 3 565
再見小時候
再見小時候 2021-01-06 07:39

I\'m working on an Windows Phone 7 app where I\'m going to show ATM\'s nere your location with bing maps.

I have an xml-file with addresses and gps coordinates. But

相关标签:
3条回答
  • 2021-01-06 08:08

    You cannot directly pass files to the isolated storage at design time. Only when the application is running.

    I'd still recommend passing the file to the application through a web service. Mainly because if eventually you will need to change the contents of the XML, you will need to update the application.

    What I would do is simply create a WCF service that will return serialized data (or the existing XML) via a simple HTTP request.

    0 讨论(0)
  • 2021-01-06 08:13

    The "Mango" SDK ships with the ISETool that can take and restore snapshots of an application's isolated storage to/from a local directory:

    # Copy data from IS to directory
    ISETool.exe ts xd <PRODUCT-ID> "C:\TempDirectory\IsolatedStore"
    
    # Copy data from IS to directory
    ISETool.exe rs xd <PRODUCT-ID> "C:\TempDirectory\IsolatedStore"
    

    If you don't want to overwrite the entire IS, the tool supports an option (device-folder) for specifying a sub-directory to backup/restore.

    0 讨论(0)
  • 2021-01-06 08:14

    Files listed as content in the Visual Studio project are copied to the generated XAP file (which is analogous to a ZIP file). They are not copied to isolated storage.

    In the case of an XML file, you can call XmlReader.Create with the path to the file as argument, as follows:

    using (XmlReader reader = XmlReader.Create("path/to/file.xml"))
    {
        // read XML file here
    }
    

    Or you can also call Application.GetResourceStream and use the Stream property of the returned StreamResourceInfo object:

    StreamResourceInfo sri = Application.GetResourceStream(
        new Uri("path/to/file.xml", UriKind.Relative));
    // read XML file here from sri.Stream, e.g. using a StreamReader object
    
    0 讨论(0)
提交回复
热议问题