gpt4 book ai didi

java - Java 中的下拉式提示搜索

转载 作者:行者123 更新时间:2023-12-02 11:19:47 25 4
gpt4 key购买 nike

下拉建议工作正常,但问题是例如:

如果我输入“Outlook”,它会显示(下拉)以“Outlook”开头的所有项目,但不会显示字符串中包含“Outlook”的项目。

我在这里使用了Autocompleter库,也尝试了Autocomplete库仍然相同。

还有其他方法吗?或者需要做任何改变吗?

非常感谢任何帮助。

我的代码:

//Below code when key Typed:
TextAutoCompleter complete=new TextAutoCompleter(t1);
complete.removeAllItems(); // Remove all from drowndown list
String temp = t1.getText(); //t1 is the textfield
Connection conn = null;
PreparedStatement pst = null;
ResultSet rs = null;
String value = null;
try{
Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
conn = DriverManager.getConnection("jdbc:ucanaccess://src\\Mydb.accdb");
String sql = "select KB_Title from JD" ;
pst = conn.prepareStatement(sql);
rs =pst.executeQuery();
while (rs.next())
{
value = rs.getString(1);
if(value.contains(temp))
complete.addItem(rs.getString("KB_Title"));
}
catch(ClassNotFoundException | SQLException | HeadlessException e){
JOptionPane.showMessageDialog(null,e);
}

最佳答案

complete.setMode(0); // Infix mode, "contains"

SQL 还可以更好:

// Not needed nowadays: Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
String sql = "select KB_Title from JD where KB_Title like ?";
try (Connection conn = DriverManager.getConnection("jdbc:ucanaccess://src\\Mydb.accdb");
PreparedStatement pst = conn.prepareStatement(sql)) {
pst.setString(1, "%" + temp.trim() + "%");
try (ResultSet rs = pst.executeQuery()) {
while (rs.next()) {
value = rs.getString(1);
complete.addItem(rs.getString("KB_Title"));
}
}
}

也许按长度排序(KB_Title),KB_Title

关于java - Java 中的下拉式提示搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50016761/

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