好的,我已经搜索无处不在,我真的被这个困住了。 我正在尝试创建一个程序,该程序将使用流读取器加载带有逗号分隔的文本单词的CSV文件,然后将它们添加到字典中。 然后在表单上,如果用户将逗号之前的文本键入第一个文本框并单击按钮,则逗号后面的文本将显示在另一个文本框中。
我不会撒谎,我仍然在努力学习c#的基础知识,所以我将不胜感激![/ p>
这是我刚才的代码,我不知道从哪里开始,我想在逗号分割后使用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(',');
}
}
}
}
我输入数据的示例如下:
黑色,白色
猫,狗
黄色,蓝色
答案 0 :(得分: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);
我不在编译之前所以这可能需要清理,但应该非常接近。
答案 1 :(得分: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 ;
}