一、c#向指定文本文件添加内容
二、c#创建txt文本日志,在尾行追加内容
调试程序总是会用需要一个日志文件记录调试过程。这个代码会自动创建一个文本文件然后在尾行添加新的内容。
存在的问题:
如果这个日志已经被一个用户打开,可能其他用户就不能写入了。
可以使用:
using (StreamWriter SW = File.AppendText(LogFile))
解决此问题
完整代码:
public void CheckLog(string Log)
{
if (File.Exists(LogFile))
{
WriteLog(Log);
}
else
{
CreateLog();
WriteLog(Log);
}
}
private void CreateLog()
{
StreamWriter SW;
SW = File.CreateText(LogFile);
SW.WriteLine("Log created at: " +
DateTime.Now.ToString("dd-MM-yyyy hh:mm:ss"));
SW.Close();
}
private void WriteLog(string Log)
{
using (StreamWriter SW = File.AppendText(LogFile))
{
SW.WriteLine(Log);
SW.Close();
}
}
三、c#在word文档指定位置增加内容
项目中用到再word的指定位置添加内容,所以使用了标签。
1、在Word文档中插入一个书签,书签名称为“tl”;
2、新建一个C#项目,然后在引用中添加Word类库;由于使用的是Office2007,因此选择的是"Microsoft Word 12.0 Object Library",如果你使用的是Office2003,就应该选择11.0;
3、在代码顶部添加对Word类库的引用;
4、打开Word文档
5、找到刚才添加的书签(注释部分为跳转至标签位置并添加文本的三种方法,做其他参考)
方法一,使用Word应用程序变量,使用这种方法,wordApp.Documents.Open()中确保isVisible的值为true
方法二:使用Word文档变量
方法三:使用Goto函数,跳转到指定书签
6、删除在该位置的表格
如果书签所在的位置并没有插入表格,程序并不会删除该位置下面的表格,而是会抛出异常,报错。
7、插入表格,并划线
//添加表格
oDoc.Tables.Add(startRange, 5, 4, ref missingValue, ref missingValue);
//为表格划线
startRange.Tables[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderLeft].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderRight].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderHorizontal].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderVertical].LineStyle = WdLineStyle.wdLineStyleSingle;
全部代码:
object missingValue = System.Reflection.Missing.Value;
object myTrue = false; //不显示Word窗口
object fileName = @"F:Doc1.doc";
Word._Application oWord = new Word.ApplicationClass();
Word._Document oDoc;
oDoc = oWord.Documents.Open(ref fileName, ref missingValue,
ref myTrue, ref missingValue, ref missingValue, ref missingValue,
ref missingValue, ref missingValue, ref missingValue,
ref missingValue, ref missingValue, ref missingValue,
ref missingValue, ref missingValue, ref missingValue,
ref missingValue);
try
{
object tmp = "t1";
Word.Range startRange = oWord.ActiveDocument.Bookmarks.get_Item(ref tmp).Range;
//删除指定书签位置后的第一个表格
Word.Table tbl = startRange.Tables[1];
tbl.Delete();
//添加表格
oDoc.Tables.Add(startRange, 5, 4, ref missingValue, ref missingValue);
//为表格划线
startRange.Tables[1].Borders[WdBorderType.wdBorderTop].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderLeft].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderRight].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderBottom].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderHorizontal].LineStyle = WdLineStyle.wdLineStyleSingle;
startRange.Tables[1].Borders[WdBorderType.wdBorderVertical].LineStyle = WdLineStyle.wdLineStyleSingle;
}
catch
{
//异常处理
}
object bSaveChange = true;
oDoc.Close(ref bSaveChange, ref missingValue, ref missingValue);
oDoc = null;
oWord = null;