0

好的,我到处搜索,我真的坚持这一点。我正在尝试创建一个程序,该程序将使用流式阅读器加载带有逗号分隔的文本单词的 CSV 文件,然后将它们添加到字典中。然后在表单上,​​如果用户在第一个文本框中键入逗号之前的文本并单击一个按钮,那么逗号之后的文本将显示在另一个文本框中。

我不会撒谎,我仍在努力学习 c# 的基础知识,因此我们将不胜感激!

这是我刚才的代码,我不知道从哪里开始,我想在逗号拆分后使用 TryGetValue 将文本的第一部分分配为 [0],将逗号后的第二部分分配为 [1 ]

//Dictionary Load Button
private void button1_Click_1(object sender, EventArgs e)
{
    if (openFileDialog1.ShowDialog() == DialogResult.OK) // Allows the user to choose the dictionary to load
    {  
        Dictionary<string, int> d = new Dictionary<string, int>();
        using (StreamReader sr = new StreamReader(openFileDialog1.FileName))
        {
            string line;
            while ((line = sr.ReadLine()) != null)
            {
                string[] splitword = line.Split(',');
            }
        }
    }
}

我的输入数据的一个例子是:

黑,白

猫狗

黄色, 蓝色

4

2 回答 2

0

我现在只做如下简单的事情:

if(splitword.Length != 2)
    //Do something (log it, throw an error, ignore it, etc
    continue;
int numberVal;
if(!Int32.TryParse(splitword[1], out numberVal))
    //Do something (log it, throw an error, ignore it, etc
    continue;    
d.Add(splitword[0], numberVal);

我不在编译前,所以这可能需要清理,但应该非常接近。

于 2012-03-16T20:34:03.430 回答
0

Dictionary 方法的问题在于,只有当字典条目的是用作某种累加器或正在以某种方式转换的引用类型TryGetValue()时,它才会真正发挥作用:

public Dictionary<string,List<Widget>> LoadWidgetDictionary( IEnumerable<Widget> widgets )
{
  Dictionary<string,List<Widget>> instance = new Dictionary<string,List<Widget>>() ;

  foreach( Widget item in widgets )
  {
    List<Widget> accumulator ;
    bool         found       = instance.TryGetValue( item.Name , out accumulator ) ;

    if ( !found )
    {
      accumulator = new List<Widget>() ;
      instance.Add( item.Name , accumulator ) ;
    }

    accumulator.Add(item) ;

  }

  return ;
}

如果你不这样做,你最好检查一下是否在字典中找到密钥:

public Dictionary<string,Widget> LoadWidgets( IEnumerable<Widget> widgets )
{
  Dictionary<string,Widget> instance = new Dictionary<string,Widget>() ;

  foreach ( Widget item in widgets )
  {
    if ( instance.ContainsKey( item.Name ) )
    {
      DisplayDuplicateItemErrorMessage() ;
    }
    else
    {
      instance.Add( item.Name , item ) ;
    }
  }
  return instance ;
}

修改添加了一个建议

您可以尝试以下方法:

Dictionary<string,string> LoadDictionaryFromFile( string fileName )
{
  Dictionary<string,string> instance = new Dictionary<string,string>() ;

  using ( TextReader tr = File.OpenText( fileName ) )
  {
    for ( string line = tr.ReadLine() ; line != null ; line = tr.ReadLine() )
    {
      string key   ;
      string value ;

      parseLine( line , out key , out value ) ;
      addToDictionary( instance , key , value );

    }
  }

  return instance ;
}

void parseLine( string line , out string key , out string value )
{
  if ( string.IsNullOrWhiteSpace(line) ) throw new InvalidDataException() ;
  string[] words = line.Split( ',' ) ;

  if ( words.Length != 2 ) throw new InvalidDataException() ;

  key   = words[0].Trim() ;
  value = words[1].Trim() ;

  if ( string.IsNullOrEmpty( key   ) ) throw new InvalidDataException() ;
  if ( string.IsNullOrEmpty( value ) ) throw new InvalidDataException() ;

  return ;
}

private static void addToDictionary( Dictionary<string , string> instance , string key , string value )
{
  string existingValue;
  bool   alreadyExists = instance.TryGetValue( key , out existingValue );

  if ( alreadyExists )
  {
    // duplicate key condition: concatenate new value to the existing value,
    // or display error message, or throw exception, whatever.
    instance[key] = existingValue + '/' + value;
  }
  else
  {
    instance.Add( key , value );
  }
  return ;
}
于 2012-03-16T21:15:35.553 回答