我创建了一个连接到数据库的Windows窗体应用程序,用户在其中输入特定值。我现在面临的问题是我创建了一个像魅力一样的搜索。但是,用户将始终按名称和姓氏进行搜索,并且我希望将此搜索修改为更准确。它有效,但是当我只输入姓名或仅输入姓氏时,我想显示一个按摩盒,说他们没有正确输入。所以我写了这个,但如果我只键入一个单词,它会崩溃并显示此错误:索引超出了数组的范围。谢谢!
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length != 0)
{
var numePrenume = textBox1.Text.Trim().Split(' ');
var nume = numePrenume[0];
var prenume = numePrenume[1];
if (nume.Length > 0 || prenume.Length > 0)
{
var connString = @"Data Source=C:\Users\Andrei\Documents\Visual Studio 2010\Projects\Stellwag\Stellwag\Angajati.sdf";
using (var conn = new SqlCeConnection(connString))
{
}
}
//some code
}
答案 0 :(得分:2)
检查您的阵列长度将解决您的问题:
if (textBox1.Text.Length != 0)
{
var numePrenume = textBox1.Text.Trim().Split(' ');
if (numePrenume.Length >= 1)
{
var nume = numePrenume[0];
var prenume = numePrenume[1];
if (nume.Length > 0 || prenume.Length > 0)
{
var connString = @"Data Source=C:\Users\Andrei\Documents\Visual Studio 2010\Projects\Stellwag\Stellwag\Angajati.sdf";
using (var conn = new SqlCeConnection(connString))
{
}
}
}
else
// some code here
}
答案 1 :(得分:2)
您需要检查length
返回的数组的Split()
。此外,如果用户在名称部分之间键入多个空格,最好添加StringSplitOptions.RemoveEmptyEntries
以避免获得两个以上的部分。
考虑这个例子:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
var name = " name ";
var nameParts = name.Trim().Split(new []{' '}, StringSplitOptions.RemoveEmptyEntries);
if (nameParts.Length < 2)
{
Console.WriteLine("You've only entered one name");
}
else
{
Console.WriteLine("First part: {0}", nameParts[0]);
Console.WriteLine("Second part: {0}", nameParts[1]);
}
}
}
}
答案 2 :(得分:1)
如果只键入一个单词,则此行将导致异常:
var prenume = numePrenume[1];
因为它不存在。
在尝试访问数组的元素之前,您需要添加一些边界检查,例如
if(numePrenume.Length == 2)
{
var prenume = numePrenume[1];
}
答案 3 :(得分:1)
您需要检查split函数是否返回多个元素。简单地更新这样的代码可以解决您的问题:
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length != 0)
{
var numePrenume = textBox1.Text.Trim().Split(' ');
var nume = numePrenume[0];
if(numePrenume.Length >= 1)
{
var prenume = numePrenume[1];
}
if (nume.Length > 0 || prenume.Length > 0)
{
var connString = @"Data Source=C:\Users\Andrei\Documents\Visual Studio 2010\Projects\Stellwag\Stellwag\Angajati.sdf";
using (var conn = new SqlCeConnection(connString))
{
}
}
//some code
}
答案 4 :(得分:1)
您需要检查Activity
是否大于1.如果小于1,则向用户显示一些消息。
protected void onCreate(Bundle bundle) {
super.onCreate(savedInstanceState);
Intent intent = getIntent();
TableRow tableRow = (TableRow)intent.getSerializableExtra("tableRow");
}
答案 5 :(得分:1)
您需要检查Split('')是否为您提供了2个名字。如果它只包含一个元素,它就不能给你一个numePrenume [1]。
未经测试的代码:
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length != 0)
{
var numePrenume = textBox1.Text.Trim().Split(' ');
if(numePrenume.Count()>1)
{
var nume = numePrenume[0];
var prenume = numePrenume[1];
var connString = @"Data Source=C:\Users\Andrei\Documents\Visual Studio 2010\Projects\Stellwag\Stellwag\Angajati.sdf";
using (var conn = new SqlCeConnection(connString))
{
}
}
//some code
}
}
答案 6 :(得分:0)
您可以尝试验证Textbox.Text,如果需要填充Name和surname,则可以返回验证错误。 这可以按如下方式完成:
if(numePrenume.Lenght()==0)
{
MessageBox.Show("");
}
return;
希望它有所帮助:)