c#中如何读取word文档,急用!

如何读取word文档和存储word文档!... 如何读取word文档和存储word文档! 展开
 我来答
非典型天秤座
2007-06-11 · TA获得超过1395个赞
知道大有可为答主
回答量:850
采纳率:0%
帮助的人:1342万
展开全部
给你的对文件操作的类吧:
public class FileControl
{
public FileControl()
{

}
/**/
///
/// 在根目录下创建文件夹
///
/// 要创建的文件路径
public void CreateFolder(string FolderPathName)
{
if (FolderPathName.Trim().Length > 0)
{
try
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath

("../../../Images/" + FolderPathName).ToString();
if (!Directory.Exists(CreatePath))
{
Directory.CreateDirectory(CreatePath);
}
}
catch(Exception ex)
{
throw;
}
}
}

/**/
///
/// 删除一个文件夹下面的字文件夹和文件
///
///
public void DeleteChildFolder(string FolderPathName)
{
if (FolderPathName.Trim().Length > 0)
{
try
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath

(FolderPathName).ToString();
if (Directory.Exists(CreatePath))
{
Directory.Delete(CreatePath, true);
}
}
catch(Exception ex)
{
throw;
}
}
}

/**/
///
/// 删除一个文件
///
///
public void DeleteFile(string FilePathName)
{
try
{
FileInfo DeleFile = new FileInfo(System.Web.HttpContext.Current.Server.MapPath

(FilePathName).ToString());
DeleFile.Delete();
}
catch(Exception ex)
{
throw;
}
}
public void CreateFile(string FilePathName)
{
try
{
//创建文件夹
//string[] strPath= FilePathName.Split('/');
//CreateFolder(FilePathName.Replace("/" + strPath[strPath.Length-1].ToString(),"")); //创建文件夹
FileInfo CreateFile =new FileInfo(FilePathName); //创建文件
if(!CreateFile.Exists)
{
FileStream FS=CreateFile.Create();
FS.Close();
}
}
catch(Exception ex)
{
throw;
}
}
/**/
///
/// 删除整个文件夹及其字文件夹和文件
///
///
public void DeleParentFolder(string FolderPathName)
{
try
{
DirectoryInfo DelFolder = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath

(FolderPathName).ToString());
if (DelFolder.Exists)
{
DelFolder.Delete();
}
}
catch
{
}
}
/**/
///
/// 在文件里追加内容
///
///
public void ReWriteReadinnerText(string FilePathName, string WriteWord)
{
try
{
//建立文件夹和文件
//CreateFolder(FilePathName);
//CreateFile(FilePathName);
//得到原来文件的内容
FileStream FileRead = new FileStream(FilePathName, FileMode.Append,FileAccess.Write);
//StreamReader FileReadWord = new StreamReader(FileRead, System.Text.Encoding.Default);
//string OldString = FileReadWord.ReadToEnd().ToString();
//OldString = OldString + WriteWord;
//把新的内容重新写入
StreamWriter FileWrite = new StreamWriter(FileRead, System.Text.Encoding.Default);
FileWrite.Write(WriteWord);
//关闭
FileWrite.Close();
//FileReadWord.Close();
FileRead.Close();
}
catch(Exception ex)
{
// throw;
}
}

/**/
///
/// 在文件里追加内容
///
///
public string ReaderFileData(string FilePathName)
{
try
{

FileStream FileRead = new FileStream(System.Web.HttpContext.Current.Server.MapPath

(FilePathName).ToString(), FileMode.Open, FileAccess.Read);
StreamReader FileReadWord = new StreamReader(FileRead, System.Text.Encoding.Default);
string TxtString = FileReadWord.ReadToEnd().ToString();
//关闭
FileReadWord.Close();
FileRead.Close();
return TxtString;
}
catch
{
throw;
}
}
/**/
///
/// 读取文件夹的文件
///
///
///
public DirectoryInfo checkValidSessionPath(string FilePathName)
{
try
{
DirectoryInfo MainDir = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath

(FilePathName));
return MainDir;

}
catch
{
throw;
}
}
}
我用这个操作文本文件,应该也可以操作WORD文档.
另外给个C#操纵WORD文档的例子
http://blog.csdn.net/viniboy1982/archive/2006/12/06/1432472.aspx
摆渡浮桥
2007-06-11 · TA获得超过3629个赞
知道大有可为答主
回答量:1610
采纳率:100%
帮助的人:2199万
展开全部
创建一个word.application对象,通过这个对象打开、修改和保存文件。
我没读取过word文档,但我用这种方式读取过excel文件。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
撒荌言晓曼
2019-08-25 · TA获得超过3893个赞
知道小有建树答主
回答量:3186
采纳率:28%
帮助的人:185万
展开全部
给你的对文件操作的类吧:
public
class
FileControl
{
public
FileControl()
{
}
/**/
///
///
在根目录下创建文件夹
///
///
要创建的文件路径
public
void
CreateFolder(string
FolderPathName)
{
if
(FolderPathName.Trim().Length
>
0)
{
try
{
string
CreatePath
=
System.Web.HttpContext.Current.Server.MapPath
("../../../Images/"
+
FolderPathName).ToString();
if
(!Directory.Exists(CreatePath))
{
Directory.CreateDirectory(CreatePath);
}
}
catch(Exception
ex)
{
throw;
}
}
}
/**/
///
///
删除一个文件夹下面的字文件夹和文件
///
///
public
void
DeleteChildFolder(string
FolderPathName)
{
if
(FolderPathName.Trim().Length
>
0)
{
try
{
string
CreatePath
=
System.Web.HttpContext.Current.Server.MapPath
(FolderPathName).ToString();
if
(Directory.Exists(CreatePath))
{
Directory.Delete(CreatePath,
true);
}
}
catch(Exception
ex)
{
throw;
}
}
}
/**/
///
///
删除一个文件
///
///
public
void
DeleteFile(string
FilePathName)
{
try
{
FileInfo
DeleFile
=
new
FileInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToS
查看原帖>>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式