如何将FileStream更改为字符串
本文关键字:字符串 FileStream | 更新日期: 2023-09-27 18:02:54
在有以下代码我怎么能改变流接受字符串变量?
// open dictionary file
FileStream fs = new FileStream(dictionaryPath, FileMode.Open, FileAccess.Read, FileShare.Read);
StreamReader sr = new StreamReader(fs, Encoding.UTF8);
// read line by line
while (sr.Peek() >= 0)
{
string tempLine = sr.ReadLine().Trim();
if (tempLine.Length > 0)
{
// check for section flag
switch (tempLine)
{
case "[Copyright]" :
case "[Try]" :
case "[Replace]" :
case "[Prefix]" :
...
...
...
看起来您只需要调用ReadLine()
-在这种情况下,您可以将sr
的类型更改为TextReader
。
然后您可以用StringReader替换您的StreamReader
并传递您想要使用的字符串:
TextReader sr = new StringReader(inputString);
你是说StringReader吗?它创建一个读取字符串内容的流。
如果你有一个字符串,你想从它读取,就像它是一个流:
byte[] byteArray = Encoding.ASCII.GetBytes(theString);
MemoryStream stream = new MemoryStream(byteArray);
我的建议…"如果可以,请远离溪流"
在这种情况下,可以
1)读取字符串变量中的所有文件;
2)在行尾字符('r'n
)处将其拆分为字符串数组
3)做一个简单的foreach
循环,并把你的switch语句放在里面
小例子:
string dictionaryPath = @"C:'MyFile.ext";
string dictionaryContent = string.empty;
try // intercept file not exists, protected, etc..
{
dictionaryContent = File.ReadAllText(dictionaryPath);
}
catch (Exception exc)
{
// write error in log, or prompt it to user
return; // exit from method
}
string[] dictionary = dictionaryContent.Split(new[] { "'r'n" }, StringSplitOptions.None);
foreach (string entry in dictionary)
{
switch (entry)
{
case "[Copyright]":
break;
case "[Try]":
break;
default:
break;
}
}
希望这有帮助!