- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有多个从XML到XML的(反)序列化的DTO类。我想对属性使用PascalCase的C#约定,但是我希望它们在XML中显示为camelCase。
例子:
[XmlElement("config")]
public ConfigType Config { get; set; }
Config
,但在XML中显示为
config
。
[XmlAttribute]
是浪费的,考虑到它们始终与属性名称相同,只有第一个字母不能大写。另外,如果将来更改属性名称,则必须记住要更改
[XmlAttribute]
,否则它们将变得不同步。
最佳答案
您可以创建一个自定义XmlWriter,将框架提供的XmlWriter封装为以下内容:
public class MyXmlWriter : XmlWriter
{
private bool disposedValue;
private XmlWriter writer; // The XmlWriter that will actually write the xml
public override WriteState WriteState => writer.WriteState;
public MyXmlWriter(XmlWriter writer)
{
this.writer = writer;
}
public override void WriteStartElement(string prefix, string localName, string ns)
{
localName = char.ToLower(localName[0]) + localName.Substring(1); // Assuming that your properties are in PascalCase we just need to lower-case the first letter.
writer.WriteStartElement(prefix, localName, ns);
}
public override void WriteStartAttribute(string prefix, string localName, string ns)
{
// If you want to do the same with attributes you can do the same here
writer.WriteStartAttribute(prefix, localName, ns);
}
protected override void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
writer.Dispose();
base.Dispose(disposing);
}
disposedValue = true;
}
}
// Wrapping every other methods...
public override void Flush()
{
writer.Flush();
}
public override string LookupPrefix(string ns)
{
return writer.LookupPrefix(ns);
}
public override void WriteBase64(byte[] buffer, int index, int count)
{
writer.WriteBase64(buffer, index, count);
}
public override void WriteCData(string text)
{
writer.WriteCData(text);
}
public override void WriteCharEntity(char ch)
{
writer.WriteCharEntity(ch);
}
public override void WriteChars(char[] buffer, int index, int count)
{
writer.WriteChars(buffer, index, count);
}
public override void WriteComment(string text)
{
writer.WriteComment(text);
}
public override void WriteDocType(string name, string pubid, string sysid, string subset)
{
writer.WriteDocType(name, pubid, sysid, subset);
}
public override void WriteEndAttribute()
{
writer.WriteEndAttribute();
}
public override void WriteEndDocument()
{
writer.WriteEndDocument();
}
public override void WriteEndElement()
{
writer.WriteEndElement();
}
public override void WriteEntityRef(string name)
{
writer.WriteEntityRef(name);
}
public override void WriteFullEndElement()
{
writer.WriteFullEndElement();
}
public override void WriteProcessingInstruction(string name, string text)
{
writer.WriteProcessingInstruction(name, text);
}
public override void WriteRaw(char[] buffer, int index, int count)
{
writer.WriteRaw(buffer, index, count);
}
public override void WriteRaw(string data)
{
writer.WriteRaw(data);
}
public override void WriteStartDocument()
{
writer.WriteStartDocument();
}
public override void WriteStartDocument(bool standalone)
{
writer.WriteStartDocument(standalone);
}
public override void WriteString(string text)
{
writer.WriteString(text);
}
public override void WriteSurrogateCharEntity(char lowChar, char highChar)
{
writer.WriteSurrogateCharEntity(lowChar, highChar);
}
public override void WriteWhitespace(string ws)
{
writer.WriteWhitespace(ws);
}
}
然后像这样使用它:
public class CustomClassOne
{
public string MyCustomName { get; set; }
public CustomClassTwo MyOtherProperty { get; set; }
public CustomClassTwo[] MyArray { get; set; }
}
public class CustomClassTwo
{
public string MyOtherCustomName { get; set; }
}
.
.
.
static void Main(string[] args)
{
var myObj = new CustomClassOne()
{
MyCustomName = "MYNAME",
MyOtherProperty = new CustomClassTwo()
{
MyOtherCustomName = "MyOtherName"
},
MyArray = new CustomClassTwo[]
{
new CustomClassTwo(){MyOtherCustomName = "Elem1"},
new CustomClassTwo(){MyOtherCustomName = "Elem2"}
}
};
var sb = new StringBuilder();
var serializer = new XmlSerializer(typeof(CustomClassOne));
var settings = new XmlWriterSettings()
{
Indent = true // Indent it so we can see it better
};
using (var sw = new StringWriter(sb))
using (var xw = new MyXmlWriter(XmlWriter.Create(sw, settings)))
{
serializer.Serialize(xw, myObj);
}
Console.WriteLine(sb.ToString());
}
输出将是:
<?xml version="1.0" encoding="utf-16"?>
<customClassOne xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<myCustomName>MYNAME</myCustomName>
<myOtherProperty>
<myOtherCustomName>MyOtherName</myOtherCustomName>
</myOtherProperty>
<myArray>
<customClassTwo>
<myOtherCustomName>Elem1</myOtherCustomName>
</customClassTwo>
<customClassTwo>
<myOtherCustomName>Elem2</myOtherCustomName>
</customClassTwo>
</myArray>
</customClassOne>
为了能够反序列化,我们可以在XmlReader上创建一个包装器,就像在XmlWriter上创建的包装器一样:
public class MyXmlReader : XmlReader
{
private bool disposedValue;
private XmlReader reader;
// The property names will be added in the XmlNameTable, so we wrap it with a simple class that lower-cases the first letter like we did previously
private XmlNameTableWrapper nameTable;
private class XmlNameTableWrapper : XmlNameTable
{
private XmlNameTable wrapped;
// Some names that are added by default to this collection. We can skip the lower casing logic on them.
private string[] defaultNames = new string[]
{
"http://www.w3.org/2001/XMLSchema","http://www.w3.org/2000/10/XMLSchema","http://www.w3.org/1999/XMLSchema","http://microsoft.com/wsdl/types/","http://www.w3.org/2001/XMLSchema-instance","http://www.w3.org/2000/10/XMLSchema-instance","http://www.w3.org/1999/XMLSchema-instance","http://schemas.xmlsoap.org/soap/encoding/","http://www.w3.org/2003/05/soap-encoding","schema","http://schemas.xmlsoap.org/wsdl/","arrayType","null","nil","type","arrayType","itemType","arraySize","Array","anyType"
};
public XmlNameTableWrapper(XmlNameTable wrapped)
{
this.wrapped = wrapped;
}
public override string Add(char[] array, int offset, int length)
{
if (array != null && array.Length > 0 && !defaultNames.Any(n => n == new string(array)))
{
array[0] = char.ToLower(array[0]);
}
return wrapped.Add(array, offset, length);
}
public override string Add(string array)
{
if (array != null && !defaultNames.Any(n => n == array))
{
if (array.Length < 2)
{
array = array.ToLower();
}
else
array = char.ToLower(array[0]) + array.Substring(1);
}
return wrapped.Add(array);
}
public override string Get(char[] array, int offset, int length)
{
if (array != null && array.Length > 0 && !defaultNames.Any(n => n == new string(array)))
{
array[0] = char.ToLower(array[0]);
}
return wrapped.Get(array, offset, length);
}
public override string Get(string array)
{
if (array != null && !defaultNames.Any(n => n == array))
{
if (array.Length < 2)
{
array = array.ToLower();
}
array = char.ToLower(array[0]) + array.Substring(1);
}
return wrapped.Get(array);
}
}
public MyXmlReader(XmlReader reader)
{
this.reader = reader;
nameTable = new XmlNameTableWrapper(reader.NameTable);
}
protected override void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
reader.Dispose();
base.Dispose(disposing);
}
disposedValue = true;
}
}
// Instead of returning reader.NameTable we return the wrapper that will care to populate it
public override XmlNameTable NameTable => nameTable;
// Everything else does not need additional logic...
public override XmlNodeType NodeType => reader.NodeType;
public override string LocalName => reader.LocalName;
public override string NamespaceURI => reader.NamespaceURI;
public override string Prefix => reader.Prefix;
public override string Value => reader.Value;
public override int Depth => reader.Depth;
public override string BaseURI => reader.BaseURI;
public override bool IsEmptyElement => reader.IsEmptyElement;
public override int AttributeCount => reader.AttributeCount;
public override bool EOF => reader.EOF;
public override ReadState ReadState => reader.ReadState;
public override string GetAttribute(string name)
{
return reader.GetAttribute(name);
}
public override string GetAttribute(string name, string namespaceURI)
{
return reader.GetAttribute(name, namespaceURI);
}
public override string GetAttribute(int i)
{
return reader.GetAttribute(i);
}
public override string LookupNamespace(string prefix)
{
return reader.LookupNamespace(prefix);
}
public override bool MoveToAttribute(string name)
{
return reader.MoveToAttribute(name);
}
public override bool MoveToAttribute(string name, string ns)
{
return reader.MoveToAttribute(name, ns);
}
public override bool MoveToElement()
{
return reader.MoveToElement();
}
public override bool MoveToFirstAttribute()
{
return reader.MoveToFirstAttribute();
}
public override bool MoveToNextAttribute()
{
return reader.MoveToNextAttribute();
}
public override bool Read()
{
return reader.Read();
}
public override bool ReadAttributeValue()
{
return reader.ReadAttributeValue();
}
public override void ResolveEntity()
{
reader.ResolveEntity();
}
}
然后像这样使用它:
var serializer = new XmlSerializer(typeof(CustomClassOne));
using (var sr = new StringReader(theXmlGeneratedBefore))
using (var xr = new MyXmlReader(XmlReader.Create(sr)))
{
var o = serializer.Deserialize(xr);
}
关于c# - 在C#中序列化为XML时将属性更改为camelCase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44543244/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!