码迷,mamicode.com
首页 > 其他好文 > 详细

如何读取ppt内容

时间:2014-11-12 19:47:56      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:des   io   ar   os   java   for   on   ad   as   

1、java版本
public string PptReader(string filename)
{
string fullname = DocPath+filename; //绝对路径
PowerPoint.Application papp = new PowerPoint.Application();
PowerPoint.Presentation ppr = papp.Presentations.Open(fullname, Microsoft.Office.Core.MsoTriState.msoCTrue,
MsoTriState.msoFalse, MsoTriState.msoFalse);
string doc = "";
foreach (PowerPoint.Slide slide in ppr.Slides)
{
foreach (PowerPoint.Shape shape in slide.Shapes)
{
if (shape.HasTextFrame. == MsoTriState.msoTrue)
{
if (shape.TextFrame.HasText == MsoTriState.msoTrue)
{
doc += shape.TextFrame.TextRange.Text.ToString();
doc += "/n";
}
}

}
}

ppr.Close();
System.Runtime.InteropServices.Marshal.ReleaseComObject(ppr);
ppr = null;
papp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(papp);
papp = null;
return doc;
}

后续提供javascript如何读取ppt,欢迎交流!

如何读取ppt内容

标签:des   io   ar   os   java   for   on   ad   as   

原文地址:http://blog.csdn.net/zcc_0015/article/details/41048175

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!