我是 Web 编程新手(Visual Web Developer 中的 C#),我的非 C 编程技能也有点生疏。
我创建了一个表格,其中一些单元格提示用户输入,一旦给出输入,输入就会替换提示。因此,表格只能由第一个访问该页面的人注释。稍后需要将带注释的页面提供给其他人查看,所以我需要在第一次完成后加载页面而没有提示。为此,我(尝试)识别用户,以便该人获得可编辑页面,所有编辑都保存到 xml 文件中,如果另一个用户运行该页面,则表设置会从 xml 文件中读回的编辑。
我无法始终写入 xml 文件。具体来说,我有时似乎会创建多个访问文件的进程,并且当我的代码尝试更新它时会引发运行时异常。
因为我不想在每次页面加载时创建一个新文件,所以我认为静态类是要走的路。这是代码:
static class XMLReaderWriter
{
static String fileLocation = "D:\\WebApp\\dashboard.xml";
static XMLReaderWriter()
{
FileStream fs = File.Create(fileLocation);
if (File.Exists(fileLocation))
{
// The opening tag
writeToFile(fileLocation, "<Dashboard>\n");
}
else
{
Exception e = new Exception("Failed to create " + fileLocation);
throw e;
}
}
public static void writeXML(String xml)
{
if(File.Exists(fileLocation))
{
writeToFile(fileLocation, xml);
}
else
{
File.Create(fileLocation);
writeToFile(fileLocation, xml);
}
}
private static void writeToFile(String fileLocation, String xml)
{
StreamWriter sw = new StreamWriter(fileLocation, true);
sw.WriteLine(xml);
sw.Close();
sw.Dispose();
}
public static string readXML(String trendID)
{
StringBuilder result = new StringBuilder("");
if (File.Exists(fileLocation))
{
XDocument xDoc = XDocument.Load(fileLocation);
var image = from id in xDoc.Descendants(trendID) select new
{
source = id.Attribute("image").Value
};
foreach (var imageSource in image)
{
result.AppendLine(imageSource.source);
}
}
return result.ToString();
}
public static void done()
{
// The closing tag
writeToFile(fileLocation, "</Dashboard>");
}
}
这是我调用方法的地方:
XMLReaderWriter.writeXML("\t<trend id=\"" + trendID +"\">\n\t\t" + innerHTML + "\" />\n\t</trend>");
最后有一个提交按钮,可以将结束标记添加到 xml 文件中:
<asp:Button runat="server" Text="Submit Changes" OnClick="Submit_Click" />
protected void Submit_Click(Object sender, EventArgs e)
{
XMLReaderWriter.done();
}
有时一切正常——尽管我似乎生成了格式错误的 xml。但大多数时候,我得到多个访问 xml 文件的进程。
任何建议表示赞赏。
问候。