为什么我不能在C#应用程序中读取由Java应用程序创建的db4o文件?

时间:2012-05-04 22:46:03

标签: c# java db4o

我有一个由Java应用程序生成的db4o数据库,我正在尝试使用C#应用程序读取它。

但是,运行以下代码行时:

IObjectContainer db = Db4oEmbedded.OpenFile(@"..\..\..\Databases\people.db4o");

我收到以下错误:

  

无法投射类型的对象   键入'Db4objects.Db4o.Reflect.Generic.GenericObject'   'Db4objects.Db4o.Ext.Db4oDatabase'。

有什么想法吗?我知道在DB中有人对象包含personId字段(以及其他字段)。我正在使用db4o版本8.我不确定用于生成数据库的版本。

整个计划是:

using System;
using System.Collections.Generic;
using System.Linq;

using Db4objects.Db4o;
using Db4objects.Db4o.Config;

using MyCompany.Domain;

namespace MyCompany.Anonymizer
{
    internal class Program
    {
        // Private methods.

        private static IEmbeddedConfiguration ConfigureAlias()
        {
            IEmbeddedConfiguration configuration = Db4oEmbedded.NewConfiguration();

            configuration.Common.AddAlias(new TypeAlias("com.theircompany.Person", "MyCompany.Domain.Person, MyCompany.Domain"));

            configuration.Common.Add(new JavaSupport());

            return configuration;
        }

        private static void Main(string[] args)
        {
            IObjectContainer db = Db4oEmbedded.OpenFile(@"..\..\..\Databases\people.db4o");

            try
            {
                IList<Person> result = db.Query<Person>();

                for (int i = 0; i < result.Count; i++)
                {
                    Person person = result[i];

                    Console.WriteLine(string.Format("Person ID: {0}", person.personId));
                }
            }
            finally
            {
                db.Close();
            }
        }
    }
}

1 个答案:

答案 0 :(得分:3)

抛出此异常的最常见情况是db4o无法解析存储对象的类型。

在你的情况下,db4o无法读取其内部对象之一,这使我相信你没有将配置传递给OpenFile()方法(当然,你发布的代码没有调用ConfigureAlias()方法);

请注意,从8.0版开始,不会对跨平台支持进行进一步改进(您可以阅读更多details here)。