- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
目前我遇到了一个非常令人沮丧的问题。我将尝试抽象问题以使其更容易一些。它必须在一个进程中将我的自定义对象序列化到数据库并在另一个进程中反序列化它。
我有两个组件; AppToDB.dll
和 AppFromDB.dll
。我有第三个程序集 - MyCustomObject.dll
- 这两个程序集都包含对它的引用。 MyCustomObject.dll
扩展了 MarshalByRefObject
。
在我的 AppToDB.dll
中,我执行以下代码:
public bool serializeToDB(MyCustomObject obj)
{
OdbcDataAdapter da = new OdbcDataAdapter();
MemoryStream memStream = new MemoryStream();
try
{
ObjRef marshalledObj = RemotingServices.Marshal((System.MarshalByRefObject)obj);
// Serialize the object; construct the desired formatter
IFormatter oBFormatter = new BinaryFormatter();
// Try to serialize the object
oBFormatter.Serialize(memStream, marshalledObj);
// Create byte array
byte[] serialized = memStream.ToArray();
// Build the query to write to the database
string queryString =
"INSERT INTO MyCustomObject(id, object) VALUES(?, ?)";
OdbcCommand command = new OdbcCommand(queryString, connection);
command.Parameters.AddWithValue("id", 1);
command.Parameters.AddWithValue("object", serialized);
// Write the object byte array to the database
int num = command.ExecuteNonQuery();
}
catch { }
}
在 AppFromDB.dll
中,我执行这段代码:
public OCR.Batch deserializeFromDB()
{
MemoryStream memStream = new MemoryStream();
try
{
string queryString = "SELECT object FROM FCBatch";
OdbcCommand command = new OdbcCommand(queryString, connection);
OdbcDataReader reader = command.ExecuteReader(CommandBehavior.SequentialAccess);
// Size of the BLOB buffer.
int bufferSize = 100;
// The BLOB byte[] buffer to be filled by GetBytes.
byte[] outByte = new byte[bufferSize];
// The bytes returned from GetBytes.
long retval;
// The starting position in the BLOB output.
long startIndex = 0;
MemoryStream dbStream = new MemoryStream();
while (reader.Read())
{
// Reset the starting byte for the new BLOB.
startIndex = 0;
// Read bytes into outByte[] and retain the number of bytes returned.
retval = reader.GetBytes(0, startIndex, outByte, 0, bufferSize);
// Continue while there are bytes beyond the size of the buffer.
while (retval == bufferSize)
{
dbStream.Write(outByte, 0, bufferSize);
dbStream.Flush();
// Reposition start index to end of last buffer and fill buffer.
startIndex += bufferSize;
retval = reader.GetBytes(0, startIndex, outByte, 0, bufferSize);
}
// Write the remaining buffer.
dbStream.Write(outByte, 0, (int)retval);
dbStream.Flush();
}
// Close the reader and the connection.
reader.Close();
dbStream.Position = 0;
object temp = oBFormatter.Deserialize(dbStream);
MyCustomObject obj = (MyCustomObject)temp;
return null;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return null;
}
}
好的,所以在这两段代码中您都可以看到一个 MemoryStream
对象。在第一个 AppToDB
中,它被创建,如果我查看它的内容,它包含 707 个字节。美好的。我将它写入数据库并将其作为 BLOB 保存在那里。现在,在 AppFromDB
中,我检索 BLOB 并将其存储在 byte[]
数组中。我再次将 byte[]
数组写入 MemoryStream
,看到我的 MemoryStream
对象包含 707 个字节,所有这些都在适当的位置原本的。看来我转移对象成功了!
现在问题出在 object temp = oBFormatter.Deserialize(dbStream);
上。一旦我尝试反序列化,我的 object
就是一个透明代理,我无法转换为 MyCustomObject
!!如何取回我的原始对象?我怎么能在#@& 的名字中有一个 MemoryStream 对象....在内存中...准备序列化...突然又变成了透明代理。
我很迷茫。感谢帮助。我会为得到答案的人祈祷#@& ;)
编辑 1好的,我必须说现在事情开始变得有意义了(尽管问题仍然存在)。我的问题:我的一侧有一个对象(包括状态),我需要将它存储在数据库中,以便几天后另一侧的另一个进程可以使用它。
我的对象不可序列化,因为它包装了一个未标记为可序列化的第三方对象。所以我唯一的选择似乎是编码,它返回一个 ObjRef,它又是可序列化的。但当然 - 几天后 - 我正在反序列化的对象只是引用,我的原始对象已经消失了。
我该如何解决我的问题?肯定有更多人遇到过这个问题,但我似乎找不到答案...
编辑 2好的,我想我要编写自己的可序列化类同构到第 3 方对象。然后运行整个第 3 方对象并存储/包装其状态信息等。然后将我的对象序列化到数据库......似乎是我唯一的选择。
编辑 3一段时间后再次开始解决这个问题。刚刚意识到 Edit 2 中发布的解决方案不起作用。我必须反序列化为第 3 方程序集知道的对象,因为它将继续对其执行操作。
最佳答案
您正在序列化 ObjRef
这不是原始对象而是“远程引用”,包含传输引用的所有信息。
来自 MSDN(强调我的):
The ObjRef contains information that describes the Type and class of the object being marshaled, its exact location, and communication-related information on how to reach the remoting subdivision where the object is located.
After a class implementing MarshalByRefObject is marshaled, the ObjRef that represents it is transferred through a channel into another application domain, possibly in another process or computer. When the ObjRef is deserialized in the target application domain, it is parsed to create a transparent proxy for the remote MBR object. This operation is known as unmarshaling.
编辑(因为提供了新信息):
有几种方法可以解决您的问题。它们都有自己的一套限制,我将在这里汇总:
使用 XML 序列化 XmlSerializer
. XML 序列化的不同之处在于它序列化和反序列化一个对象的所有公共(public)属性,而不是序列化字段和/或自定义数据(当 ISerializable
由要序列化的对象实现时)。因此,如果第 3 方对象只是数据容器,序列化公共(public)属性就足够了,并且它们提供了默认构造函数,那么您应该可以接受此解决方案。
构建您自己的“低级”序列化代码,使用反射获取字段并序列化它们。这种方法通常需要您的应用程序在完全信任的情况下运行(通过反射反射(reflect)和修改私有(private)字段需要通常不存在于较低信任度中的权限)。以下是一些可能对您有所帮助的方法:FormatterServices.GetSerializableMembers()获取要序列化的字段,FormatterServices.GetObjectData()从对象实例中获取字段数据,FormatterServices.GetSafeUninitializedObject()当反序列化以创建一个新的、未初始化的实例(不调用构造函数)时,以及 FormatterServices.PopulateObjectMembers()将字段写回新实例。如果字段中只有可序列化的简单数据类型,则可以序列化和反序列化用于存储字段数据的 object[]
。
您目前的想法是手动编写第 3 方对象的副本。这可能非常痛苦,并且基本上只有在 XML 序列化也可以工作的情况下才有效。如果属性对于 sinatce 是只读的,那么您将无法采用这种方法。
关于c# - 反序列化 MemoryStream - 意外行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3100464/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
当我尝试在 db2 中创建表时,它抛出以下错误 $ db2 CREATE TABLE employee(emp_id INT NOT NULL, emp_name VARCHAR(100)) sh:
我有: while (i < l) { if (one === two) { continue; } i++; } 但是 JSLint 说: Problem at line 1 chara
所以我有这个代码: char inputs[10] = ""; int numInputs = 0; while (numInputs < 10){ char c; printf("E
var ninja = { name: 'Ninja', say: function () { return 'I am a ' + this.name; }
我收到一个我不明白的错误,请注意,我是编码新手,所以这可能是一个简单的错误。 #include using namespace std; int main() { //Initialise Fahr
我正在使用 javascript 和 react,由于某种原因,我收到了一个奇怪的 token 错误。 这是发生错误的代码: renderNavBar() { if (!this.us
Closed. This question is off-topic。它当前不接受答案。
由于某种我无法解释的原因,编译器正在输出一个错误,指出它发现了一个意外的#else 标记。 这发生在文件的开头: #if defined( _USING_MFC ) #include "stda
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
这个问题在这里已经有了答案: Difference between sh and Bash (11 个答案) 关闭 2 年前。 我正在编写一个简单的 bash 脚本,我在 XX `(' unexpe
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 此问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-topic
我在 Windows 7 上编写了一个脚本,它不断给我一个错误“(此时出乎意料。”对于以下代码 if %vardns%=="NODNS" ( netsh interface ipv4 set ad
我正在尝试使用xmlstarlet(使用xpath)解析XML文件,但是出现语法错误,并且我不知道如何更正我的代码。 这是我的脚本: #!/bin/bash if [ $1=="author" ];
以下脚本旨在在目录中的所有文件上运行程序“senna”,并将每个文件的输出(保留输入文件名)写入另一个目录 for file in ./Data/in/*; do ./senna -iobta
我从 challengers.coffee 运行此代码,并收到错误 ActionView::Template::Error (SyntaxError: [stdin]:3:31:unexpected
我在 config.db.database; 行中有语法错误(意外的标记“.”)。这是我在文件中的代码 const config = require('../config/config') const
这一定很明显,但是我无法使它正常工作。我正在尝试传输应该用于构建$ classKey的对象,这反过来又导致删除所需的软件(amd64或i386)。好吧,这里的代码: $name = @("softwa
我正在使用 1.3.7 版学习 Grails,但我一直无缘无故地遇到以下语法错误: unexpected token: mapping @ line x, column y. 有一次,我通过运行“gr
我正在尝试找出这段Pascal代码的问题 function Factorial(n: integer): integer; begin if n = 0 then Result := 1
我是一名优秀的程序员,十分优秀!