我有多个XML文件,如下所示
<?xml version="1.0" encoding="UTF-8"?>
<schema>
<sp_transaction_id name="sp_transaction_id" value="1" />
<sp_year name="sp_year" value="2015" />
<sp_first_name name="sp_first_name" value="James" />
<sp_gender name="sp_gender" value="Male" />
<sp_date_of_birth name="sp_date_of_birth" value="06-06-1999" />
</schema>
我认为XML格式是Key-Value Pairs。 我想提取这些值并将其存储到数据库(SQL Server 2012)表中,使用ASP.NET C#将名称(例如; sp_year)作为列名称和值(例如; 2015)作为Column值。 我想我可以上传文件并按如下方式阅读:
string fileName = Path.GetFileName(FileUpload1.PostedFile.FileName);
string filePath = Server.MapPath("~/Uploads/") + fileName;
FileUpload1.SaveAs(filePath);
string xml = File.ReadAllText(filePath);
但那就是它(抱歉我是初学者)。请指导我。感谢
答案 0 :(得分:1)
要从xml文件中读取数据,您不需要上传它。您可以提供xml的路径并从中读取。您可以使用以下方法从xml读取
public static XmlDocument LoadXmlDocument(string xmlPath)
{
if ((xmlPath == "") || (xmlPath == null) || (!File.Exists(xmlPath)))
return null;
StreamReader strreader = new StreamReader(xmlPath);
string xmlInnerText = strreader.ReadToEnd();
strreader.Close();
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xmlInnerText);
return xmlDoc;
}
要从xml读取数据,您可以使用
XmlDocument xmlDoc = LoadXmlDocument(xmlPath);
XmlNodeList nodes = xmlDoc .SelectNodes("//*");
foreach (XmlElement node in nodes)
{
.
.
.
}
在foreach循环中,您可以获得所需的值,例如sp_year
答案 1 :(得分:1)
下面的答案显示了如何从中创建XmlDocument。 如果您知道Xml架构是否更改,我建议将其用作User-Defined类。 首先,您应该使用XmlAnnotations创建适合Xml文件架构的POCO类。 其次: 拥有文件的路径:
XmlSerializer serializer = new XmlSerializer(typeof(definedclass));
using (FileStream fs = File.Open(pathtofile))
using (XmlReader reader = XmlReader.Create(fs))
{
var xmlObject = serializer.Deserialize(reader);
}
xmlObject现在是您的用户定义类,其值来自xml。 问候, 拉法尔
答案 2 :(得分:1)
您可以使用以下代码获取键值对
XDocument doc = XDocument.Load(filePath);
var schemaElement = doc.Element("schema");
foreach (var xElement in schemaElement.Elements())
{
Console.WriteLine(xElement.Attribute("name").Value + ":" + xElement.Attribute("value").Value);
}
Elements方法返回架构元素内的所有元素。
但我建议将xml文件更改为此格式(如果可能)
<?xml version="1.0" encoding="UTF-8"?>
<schema>
<KeyValuePair name="sp_transaction_id" value="1" />
<KeyValuePair name="sp_year" value="2015" />
<KeyValuePair name="sp_first_name" value="James" />
<KeyValuePair name="sp_gender" value="Male" />
<KeyValuePair name="sp_date_of_birth" value="06-06-1999" />
</schema>
答案 3 :(得分:1)
您可以将文件加载到XDocument&amp;然后使用Linq-To-XML提取所需信息。下面的示例代码将所有名称/值对加载到类数组中:
C:\Program Files\RabbitMQ Server
代码获取所有“架构”后代(只有一个,因为它是顶级元素),然后选择&amp;内的所有元素。为每个提取名称&amp;创建一个新的类对象。值。
class MyXMLClass
{
public String FieldName { get; set; }
public String Value { get; set; }
}