我需要从服务器接收文本文档并从中创建XML层次结构,以便在C#程序中使用它。
这将是一个组织层次结构。这是文本文件的相同内容:
EmployeeID; Employee Name; SupervisorID
1; Bob; 3
2; Mark; 1
3; Jill; 0
4; Ann ; 1
上述关系如下:
鲍勃的老板是吉尔。马克的老板是鲍勃,而吉尔没有老板。我想从该数据创建一个XML文件,如下所示:
<Employee> Jill
<Employee> Bob
<Employee> Mark </Employee>
<Employee> Ann </Employee>
</Employee>
</Employee>
我不知道这是否有意义,因为我之前从未使用过C#或XML。
1)能够获得由同一个人监督的每个人的名字。 (例如:马克想要马克和安)
2)能够获得员工以上所有主管的姓名(例如:Mark将是Bob和Jill)
3)能够得到当时所有人的名字(例如:Mark没有人,Jill会有所有人,Bob会有Mark和Ann)
- 我已经查看了XElement和XDoc以及各种教程和SO问题,但此时大多数SO问题对我来说都太先进了,而且大多数教程并没有尝试创建像我这样的层次结构。 / p>
- 我已经构建了一个Java程序来获取文本文档并完成所有这些,但是我不太确定标记是否对使用它们作为对象很重要而且我想用C#做所有事情将帮助我学习它所以请和我一起出去。
谢谢。
答案 0 :(得分:1)
定义一个类Employee:
public class Employee{
[XmlIgnore]
public int ID{get;set;}
[XmlIgnore]
public int BossID{get;set;}
[XmlText]
public string Name{get;set;}
[XmlElement("Employee")
public Employee[] Minions{get;set;}
public SetMinions(List<Employee> list){
Minions = list.Where(e=>e.BossID==ID).ToArray();
}
}
然后解析你的输入:
List<Employee> list = File.ReadAllLines("MyInputFile.txt")
.Select(l=>new Emplyee(){
ID = l.Split(';')[0],
Name= l.Split(';')[1],
BossID = l.Split(';')[2]}).ToList();
然后为每个设置小兵:
list.ForEach(e=>e.SetMinions(list));
生成这样的XML:
XmlSerializer xser = new XmlSerializer(typeof(Employee));
xser.Serialize(File.OpenWrite("output.txt", list.First(e=>e.BossID==0)));
如果不明显这段代码非常脏且不可靠,请添加一些检查和清理
答案 1 :(得分:0)
Employee
上课:
public class Employee
{
public Employee()
{
Subordinates = new List<Employee>();
}
public int Id { get; set; }
public string Name { get; set; }
public int SupervisorId { get; set; }
public List<Employee> Subordinates { get; private set; }
public XElement ToXml()
{
return new XElement("Employee",
new XElement("Id", Id),
new XElement("Name", Name),
new XElement("Subordinates", Subordinates.Select(s => s.ToXml())));
}
}
解析逻辑:
// dictionary as a storage for data read from file
var Employees = new Dictionary<int,Employee>();
// file reading
var file = File.Open("Input.txt", FileMode.Open);
using (var reader = new StreamReader(file))
{
reader.ReadLine();
while (!reader.EndOfStream)
{
string line = reader.ReadLine();
string[] fields = line.Split(';');
var newEmployee = new Employee { Id = int.Parse(fields[0]), Name = fields[1].Trim(), SupervisorId = int.Parse(fields[2]) };
Employees.Add(newEmployee.Id, newEmployee);
}
}
// filling Subordinates within every employee
foreach (var emp in Employees.Values)
{
if (Employees.ContainsKey(emp.SupervisorId))
Employees[emp.SupervisorId].Subordinates.Add(emp);
}
// taking first (root) employee by selecting the one with supervisorId == 0
var first = Employees.Values.First(e => e.SupervisorId == 0);
// XML generation
var xml = first.ToXml();
我使用您的示例输入从该代码收到的结果:
<Employee>
<Id>3</Id>
<Name>Jill</Name>
<Subordinates>
<Employee>
<Id>1</Id>
<Name>Bob</Name>
<Subordinates>
<Employee>
<Id>2</Id>
<Name>Mark</Name>
<Subordinates />
</Employee>
<Employee>
<Id>4</Id>
<Name>Ann</Name>
<Subordinates />
</Employee>
</Subordinates>
</Employee>
</Subordinates>
</Employee>
我认为这种结构比你建议的要好。但是,您可以通过修改ToXml
类中的Employee
方法轻松修改XML结构。下面会给出你建议的输出:
public XElement ToXml()
{
return new XElement("Employee",
new XText(Name),
Subordinates.Select(s => s.ToXml()));
}
结果:
<Employee>Jill
<Employee>Bob
<Employee>Mark</Employee>
<Employee>Ann</Employee>
</Employee>
</Employee>