我目前正在使用IFilters从各种文件(word,excel,tiff,pdf等)中提取文本。我知道Windows8已经停止使用IFilters了。有没有人对如何在不安装原生应用的情况下提取文本有什么建议?如果有任何用处,我使用的是C#和.Net 4
发布于 2013-01-31 00:20:39
IFilter并未停产。仅停止Windows索引服务,转而使用Windows Search或Microsoft Search Server。两者都继续使用IFilters。
根据this documentation的说法,IFilters未来的兼容性要点是它们支持IPersistStream接口。所有现代实现都应该避免需要IPersistStorage,这样他们就不必自己访问磁盘了。
发布于 2012-11-23 07:35:38
你能遵循微软的建议吗?
来自Indexing Service Implementations of IFilter
从Windows XP开始不再支持
索引服务,并且从Windows 8开始不能使用该服务。相反,请使用Windows Search进行客户端搜索,使用Microsoft Search Server Express进行服务器端搜索。
另外,请参阅Developing Filter Handlers for Windows Search...
https://stackoverflow.com/questions/13521301
复制相似问题