本文介绍了必须在c#中使用FileStream和StreamReader读取单词Document的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我现在有一个FilePath。使用FilePath我必须从路径中读取Word或PDF文件,并且必须像这样返回File()。



我试过



I have a FilePath now. Using FilePath i have to read the Word or PDF file from the path and have to return File() like this.

I tried

FileStream fStream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
                  StreamReader sReader = new StreamReader(fStream);
                  strReader = sReader.ReadToEnd();
                  sReader.Close();





但它不起作用,它给特殊字符喜欢? |等等..

请帮助



提前感谢



But its not working, its giving the Special Characters like ? | etc..
Please help

thanks in advance

推荐答案


这篇关于必须在c#中使用FileStream和StreamReader读取单词Document的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 13:47