使用 LINQ 编写 XML
本文关键字:XML 编写 LINQ 使用 | 更新日期: 2023-09-27 18:34:46
我正在使用一段代码来编写XML文件(使用LINQ((使用XMLWriter并且代码变得太脏,LINQ更干净,似乎更快(。
问题是:它编写 XML,但只编写它的第一部分 - 我在 if 中还有其他语句,谁没有被编写。
我在 if 发生的地方设置了一些断点,并发现一切都在那里发生(变量正在获取它们的值等( - 只有 XML 没有写入。
在代码的第一部分,您可能会注意到许多右括号 - 没有它们,我无法让 XML 工作 - 或者,如果我在尝试转换时尝试更改它们的顺序(例如尽快关闭(,则说 XML 将采用无效格式。
private void openXMLToolStripMenuItem_Click(object sender, EventArgs e)
{
string currentcolor;
XElement xmldoc = new XElement("JMF",
new XAttribute("SenderID", "InkZone-Controller"),
new XAttribute("version", "1.2"),
//new XAttribute("xmlns", "http://www.CIP4.org/JDFSchema_1_1"),
new XElement("Command",
new XAttribute("ID", "cmd.00695"),
new XAttribute("Type", "Resource"),
new XElement("ResourceCmdParams",
new XAttribute("Resourcename", "InkZoneProfile"),
new XAttribute("JobID", "K_41")),
new XElement("InkZoneProfile",
new XAttribute("ID", "r0013"),
new XAttribute("Class", "Parameter"),
new XAttribute("Locked", "False"),
new XAttribute("Status", "Available"),
new XAttribute("PartIDKeys", "SignatureName SheetName Side Separation"),
new XAttribute("DescriptiveName", "Schieberwerte von DI"),
new XAttribute("ZoneWidth", "32")),
new XElement("InkZoneProfile",
new XAttribute("SignatureName", "SIG1")),
new XElement("InkzoneProfile",
new XAttribute("Locked", "False"),
new XAttribute("Sheetname", "S1")),
new XElement("InkZoneProfile",
new XAttribute("Side", "Front")),
//Loop for getting black values and store them on XML
for(int i=0; i<stringsize; i++)
{
currentcolor = colors[i];
if(currentcolor == "Black")
{
//Extracting numbers from blackzones
Regex regex1 = new Regex(@"HDMInkB '[(.*?)']",
RegexOptions.Singleline | RegexOptions.Multiline);
var v1 = regex1.Match(hdmzones);
string blackzones = v1.Groups[1].ToString();
//Converting to string - add a delimiter into each space
blackzones = Regex.Replace(blackzones, @"'s+", "|");
Double[] numbers; //An array of Doubles - store numbers separated
string[] numbers_str = blackzones.Split(new[] { "|" }, StringSplitOptions.RemoveEmptyEntries);
numbers = new Double[numbers_str.Length];
//Loop trough numbers
for (int j = 0; j < numbers.Length; j++)
{
numbers[j] = Double.Parse(numbers_str[j], CultureInfo.InvariantCulture);
//Converts each number on the string to a Double number, store it in a position
//in the Double array
numbers[j] = numbers[j] / 100; //Needed calculus
numbers[j] = Math.Round(numbers[j], 3); //Storing numbers rounded
}
string blackvalues = String.Join(" ", numbers.Select(f => f.ToString()));
//Converting values back to string - so i can insert on the XML without problems
new XElement("InkZoneProfile",
new XAttribute("Separation", currentcolor),
new XAttribute("ZoneSettingsX", blackvalues));
}//Closing BLACK if Statement
}//Closing for statement for XMLAttribute
//Saving XML Document
string strPath = Environment.GetFolderPath(
System.Environment.SpecialFolder.DesktopDirectory);
string path2 = "new_xml.xml";
string combined = Path.Combine(strPath, path2);
xmldoc.Save(combined);
}//Closing ConvertXML
您的代码似乎缺少部分。事实上,我认为它甚至无法编译。缩进是不连贯的,有些变量甚至没有定义,所以很难看出你的问题到底在哪里。
不过,我想我可能知道一个技巧来帮助你把你的元素整理好。您可以使用单独的私有方法根据给定的颜色列表生成所需的所有元素。
private IEnumerable<XElement> GetBlackvaluesElements(string hdmzones, params string[] colors)
{
for (int i = 0; i < colors.Length; i++)
{
currentColor = color[i];
if (currentColor = "Black")
{
/* Regex, Calculus & other stuff to get string blackvalues here */
yield return new XElement("InkZoneProfile",
new XAttribute("Separation", currentColor),
new XAttribute("ZoneSettingsX", blackvalues));
}
}
}
private void OpenXMLToolStripMenuItem_Click(object sender, EventArgs e)
{
var commandElement = new XElement("Command");
/* Add hardcoded elements to commandElement here */
// Adding blackvalues to commandElement
commandElement.Add(GetBlackvaluesElements(hdmzones, colors).ToArray());
var xmldoc = new XElement("JMF",
/* add required attributes here */
commandElement);
/* Save document here */
}