-4

在有以下代码中,如何将流更改为接收字符串变量?

        // 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]" :

                    ...
                    ...
                    ...
4

4 回答 4

1

看起来您只需要调用ReadLine()- 在这种情况下,您可以将类型更改srTextReader

然后,您可以将您的替换StreamReaderStringReader并传入您要使用的字符串:

TextReader sr = new StringReader(inputString);
于 2013-03-07T19:02:09.453 回答
1

我的建议..“如果可以的话,请远离溪流”

在这种情况下,您可以

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;
    }
}

希望这有帮助!

于 2013-03-07T20:22:13.290 回答
0

你的意思是StringReader吗?它创建一个读取字符串内容的流。

于 2013-03-07T19:02:09.780 回答
0

如果你有一个字符串,并且你想像读取流一样读取它:

byte[] byteArray = Encoding.ASCII.GetBytes(theString);
MemoryStream stream = new MemoryStream(byteArray);
于 2013-03-07T19:11:53.410 回答