错误:exe中发生类型'System.NullReferenceException'的异常

时间:2012-01-24 16:13:31

标签: c# wpf xml class xelement

G'day伙计

每当我运行此操作时,我都会不断收到上述错误,而且为什么会误解我。

我做了一个Step Into,发现当我将对象添加到集合中时发生异常(在下面的代码中标记)。关于可能导致这种情况的任何想法?

Img和Category类是带有inotify接口的普通类,Movies类有一个Observable集合接口。

无论如何,这是有问题的代码......

        public void LoadMovieLibrary( string libraryfile , Movies obj)
    {
        try
        {
            var libraryXML = XElement.Load( libraryfile );
            if ( libraryXML != null )
            {
                IEnumerable<XElement> movies = from element in libraryXML.Descendants( "movie" ) select element;
                foreach ( XElement movie in movies )
                {
                    ObservableCollection<Category> categoryGroup = new ObservableCollection<Category>();
                    IEnumerable<XElement> categories = from element in movie.Descendants( "category" ) select element;
                    foreach ( XElement category in categories )
                    {
                        categoryGroup.Add(
                            new Category(
                                int.Parse( category.Attribute( "id" ).Value ) ,
                                category.Attribute( "name" ).Value
                                )
                            );
                    }

                    ObservableCollection<Img> imgGroup = new ObservableCollection<Img>();
                    IEnumerable<XElement> imgs = from element in movie.Descendants( "image" ) select element;
                    foreach ( XElement img in imgs )
                    {
                        imgGroup.Add(
                            new Img(
                                img.Attribute( "type" ).Value ,
                                img.Attribute( "url" ).Value
                                )
                            );
                    }
                    try
                    {
                        obj.Add( // <= this is where it breaks
                            new Movie(
                                movie.Element( "name" ).Value ,
                                int.Parse( movie.Element( "id" ).Value ) ,
                                movie.Element( "imdbid" ).Value ,
                                movie.Element( "overview" ).Value ,
                                movie.Element( "tagline" ).Value ,
                                movie.Element( "released" ).Value ,
                                int.Parse( movie.Element( "runtime" ).Value ) ,
                                movie.Element( "trailer" ).Value ,
                                categoryGroup ,
                                imgGroup ,
                                movie.Element( "filename" ).Value
                                )
                            );
                    }
                    catch ( Exception exception )
                    {
                        MessageBox.Show( exception.Message , "Error" , MessageBoxButton.OK , MessageBoxImage.Error );
                    }
                }
            }
        }
        catch ( Exception exception )
        {
            MessageBox.Show( exception.Message , "Error" , MessageBoxButton.OK , MessageBoxImage.Error );
        }
    }

修改

非常感谢

原来我在...上留下了一个下划线。

  • movie.Element(“imdbid”)。Value

它应该是

  • movie.Element(“imdb_id”)。Value

1 个答案:

答案 0 :(得分:4)

每当您尝试使用空引用执行某些操作时,都会抛出NullReferenceException,例如调用方法,访问属性或字段等。在您的情况下,它表示以下内容之一为null:< / p>

  • obj
  • movie
  • movie.Element( "name" )
  • movie.Element( "id" )
  • movie.Element( "imdbid" )
  • movie.Element( "overview" )
  • movie.Element( "tagline" )
  • movie.Element( "released" )
  • movie.Element( "runtime" )
  • movie.Element( "trailer" )
  • movie.Element( "filename" )

即。您访问该行的属性或方法的所有内容。

在调试器中测试它们以查看哪个为空。