-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
60 lines (55 loc) · 2.38 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System.Xml.Linq;
using System.Linq;
using System.Xml.Xsl;
using System.Xml;
using System.Text;
using System.Runtime.Serialization;
namespace XmlAnalyze
{
internal class Program
{
public static string TransformXMLToHTML(string projectDirectory)
{
string inputXml = "", xsltString = "";
inputXml = File.ReadAllText((projectDirectory+"\\Data.xml"));
xsltString = File.ReadAllText(projectDirectory+"\\XSLT_Transform.xslt");
XslCompiledTransform transform = new XslCompiledTransform();
using (XmlReader reader = XmlReader.Create(new StringReader(xsltString)))
{
transform.Load(reader);
}
StringWriter results = new StringWriter();
using (XmlReader reader = XmlReader.Create(new StringReader(inputXml)))
{
transform.Transform(reader, null, results);
}
return results.ToString();
}
static void Main(string[] args)
{
string projectDirectory = Directory.GetParent(Environment.CurrentDirectory).Parent.Parent.FullName;
#region CreatingXml
XDocument xDocument = new XDocument(new XDeclaration("1.0", "utf-8", "yes"),
new XProcessingInstruction("xsl-stylesheet", "type=\"text/xsl\" href=\"XSLT_Transform.xslt\" media=\"application/xhtml+xml\" ")
, new XElement("Dorm",
from student in Student.GetAllStudents()
select new XElement("Student",
new XElement("Name", student.Name),
new XElement("Faculty", student.Faculty),
new XElement("Adress", student.Adress),
new XElement("Cathedra", student.Cathedra),
new XElement("CourseYear", student.CourseYear)
)));
xDocument.Save(projectDirectory + "\\Data.xml");
#endregion
XmlEditor Editor = new XmlEditor(projectDirectory+"\\Data.xml",XmlEditor.LinqToXmlStrategy);
#region ConvertToHtml
string HtmlResult = TransformXMLToHTML(projectDirectory);
using (var writer = new StreamWriter(new FileStream(projectDirectory + "\\index.html", FileMode.Create), Encoding.UTF8 ) )
{
writer.Write(HtmlResult);
}
#endregion
}
}
}