我正在使用这样的闭源第三方库:
object val = SomeClass.ExtractValue( someObject );
现在在某个地方,第三方库尝试解析具有意外格式的DateTime值并抛出FormatException。
在这种情况下,我想检索它没有成功解析的字符串并尝试自己解析它。 像这样:
object val;
try
{
val = SomeClass.ExtractValue( someObject );
}
catch( FormatException e )
{
string failed = e.GetParseArgument( );
val = DateTime.Parse( failed + " 2010" );
}
是的,简单地追加这一年是毫无意义的,但你明白了。 第三方库不支持我需要的所有格式,但我也不能轻易从“someObject”获取数据。 (是的,我可以尝试使用Reflector复制库的功能,但我想避免这种情况。)
有没有办法做到这一点? 感谢。
答案 0 :(得分:0)
由于someObject
是一个IDataReader,您可以创建一个装饰器并将其传递给ExtractValue
。然后,您可以拦截日期字符串并在将格式传递到库之前修改格式,例如
public class DateFormattingDataReader : IDataReader
{
private readonly IDataReader inner;
public DateFormattingDataReader(IDataReader inner)
{
this.inner = inner;
}
public string GetString(int index)
{
string s = this.inner.GetString(index);
if(index == problematicColumnIndex)
{
//try to parse string and then format it for the library
}
else return s;
}
}
或者,您可以记录从阅读器读取的所有值,然后您可以将失败的数据作为最后读取的项目并尝试自己解析。