gpt4 book ai didi

java - sqlite :Select query not work

转载 作者:行者123 更新时间:2023-11-29 05:43:17 25 4
gpt4 key购买 nike

我有这个功能。我将一个字符串传递给该函数,它将它分成两部分。然后我将在我的选择查询中使用a[1],它总是返回我。最后我决定打印 query String,它是这样的:

select *  from targettree where target='t

'

如你所知,它应该是这样的

    select *  from targettree where target='t'

函数如下:

 protected void fun(String statment) 
{
String[] a=statment.split(" ");



String t=a[1].toString();
String query = "select * from targettree where target='"+t+"'";
Select(query);

}

那么这是因为 split("") 还是有其他原因?

最佳答案

尝试替换

String query = "select *  from targettree where target='"+t+"'";

String query = "select *  from targettree where target='"+t.trim()+"'";

关于java - sqlite :Select query not work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16772575/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com