5

我有一个 Windows 手机应用程序,有时会收到 InvalidOperationExceptions,但不知道为什么以及如何避免它们。错误报告中的问题函数是Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].get_Item,我得到了这个堆栈跟踪

"Frame    Image                             Function                                                                                                                                    Offset        
0        Microsoft.Xna.Framework.ni.dll    Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].get_Item                                                 0x0003e4d8    
1        Microsoft.Xna.Framework.ni.dll    Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].System.Collections.IEnumerator.get_Current               0x00000006    
2        Microsoft.Xna.Framework.ni.dll    Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].System.Collections.Generic.IEnumerator_T_.get_Current    0x0000001c    
3        MapLense.ni.DLL                   MapLense.Helper.PictureMapping.Add                                                                                                          0x000000a8    
4        MapLense.ni.DLL                   MapLense.Helper.PictureMapping+_GetPicture_d__b.MoveNext                                                                                    0x000000f6    
5        mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess                                                                              0x00216c46    
6        mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification                                                         0x0000003a    
7        mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter_1[[System.__Canon,_mscorlib]].GetResult                                                         0x0000001c    
8        MapLense.ni.DLL                   MapLense.Helper.Map+_AddPictureToMap_d__17.MoveNext                                                                                         0x00000118    
9        mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess                                                                              0x00216c46    
10       mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification                                                         0x0000003a    
11       mscorlib.ni.dll                   System.Runtime.CompilerServices.TaskAwaiter_1[[System.__Canon,_mscorlib]].GetResult                                                         0x0000001c    
12       MapLense.ni.DLL                   MapLense.MainPage+_ViewModelOnPropertyChanged_d__1e.MoveNext                                                                                0x00000204    
13       mscorlib.ni.dll                   System.Runtime.CompilerServices.AsyncMethodBuilderCore._ThrowAsync_b__0                                                                     0x00000036"

我还尝试在代码块周围添加一个 try-catch 块,但没有结果

public static bool Add(DBPicture dbpicture)
{
    if (Pictures.ContainsKey(dbpicture.UniqueID))
        return true;

    var root = new MediaLibrary().RootPictureAlbum;

    foreach (var album in root.Albums)
    {
        if (album.Name != AppResources.CameraRollAlbumName) continue;

        for (var i = 0; i < album.Pictures.Count; i++)
        {
            try
            {
                var picture = album.Pictures[i];
                if (picture.Name == dbpicture.UniqueID)
                {
                    Pictures.Add(picture.Name, picture);
                    DBPictures.Add(picture.Name, dbpicture);
                    return true;
                }
            }
            catch (System.Exception e)
            {
#if DEBUG
                Logger.WriteLine("PictureMapping.Add(DBPicture)");
                Logger.WriteLine(e);
#endif
            }
        }
    }

    return false;
}

感谢您的任何建议

4

3 回答 3

1

不是一个真正的答案,但如果错误是第一个foreach,而try第二个是错误,则它没有捕捉到异常,把它放在try外面

try
{
    var root = new MediaLibrary().RootPictureAlbum;
于 2013-05-08T15:44:40.427 回答
0

我遇到过同样的问题。少数用户同样的崩溃。这是一个非常有趣的问题,我相信它是 WP8 而不是你的代码。最后我设法在设备上重现它,但只有在调试器分离时才会发生。你需要确定两件事。

  1. album.pictures不为空
  2. 相反,如果枚举album.Pictures尝试类似album.Pictures.OrderBy(x=>x.Date);

我知道这看起来很奇怪,但这种解决方法有效。

于 2013-11-14T10:58:04.403 回答
0

我今天在我的 WP 8.0 应用程序中遇到了这个异常。用户在自定义控件中获得了他的“相机胶卷”媒体库的几个缩略图。当他选择其中一个缩略图时,我尝试通过“GetImage()”获取真实图像。缩略图工作正常,但 GetImage() 抛出异常。显然(这是我的猜测)某些图片已损坏或损坏。它从未与他们合作,但其他图片没有问题。

所以请记住,它也可能是损坏或损坏的文件。

于 2015-10-09T14:30:15.030 回答