您的位置:首页 > 编程语言 > C#

C#读取Word表格中数据的完整代码

2010-07-06 14:20 429 查看
public void readWordFile()
        {
            object oFileName = @"../Files/Employees0.doc";
            object oReadOnly = true;
            object oMissing = System.Reflection.Missing.Value;
            Microsoft.Office.Interop.Word._Application oWord = new   
                                                                         Microsoft.Office.Interop.Word.Application();
            oWord.Visible = true;
            Microsoft.Office.Interop.Word._Document oDoc = oWord.Documents.Open(ref oFileName, ref
            oMissing, ref oReadOnly, ref oMissing, ref oMissing,ref oMissing, ref oMissing, ref oMissing, ref
            oMissing, ref oMissing,ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref
            oMissing);

            for (int tablePos = 1; tablePos <= oDoc.Tables.Count; tablePos++)
            {
                Microsoft.Office.Interop.Word.Table nowTable = oDoc.Tables[tablePos];
                string tableMessage = string.Format("第{0}/{1}个表:/n", tablePos, oDoc.Tables.Count);

                for (int rowPos = 1; rowPos <= nowTable.Rows.Count; rowPos++)
                {
                    for (int columPos = 1; columPos <= nowTable.Columns.Count; columPos++)
                    {
                        tableMessage += nowTable.Cell(rowPos, columPos).Range.Text;
                        tableMessage += tableMessage.Remove(tableMessage.Length - 2, 2);
                        tableMessage += "/t";
                    }
                    tableMessage += "/n";
                }
                string msgTable = tableMessage;               
            }
            oDoc.Close(ref oMissing, ref oMissing, ref oMissing);
            oWord.Quit(ref oMissing, ref oMissing, ref oMissing);
            Marshal.ReleaseComObject(oDoc);
            Marshal.FinalReleaseComObject(oWord);
            oWord = null;
        }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息