0
A
回答
0
您可以使用此代碼使用組合框數據庫連接動態地更新.....
//code:
String pattern=TabletCombobox.getSelectedItem().toString();
System.out.println(pattern);
//TabletCombobox.setSelectedItem(pattern);
//AutoCompleteDecorator decorator;
//AutoCompleteDecorator.decorate(TabletCombobox);
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(url,username,password);
Statement st=con.createStatement();
String Query="select * from tablet";
ResultSet rs=st.executeQuery(Query);
int i=1;
while(rs.next())
{
TabletCombobox.add(this, rs.getString(1),i++);
}
}
catch(Exception e)
{
System.err.println(e);
}
+0
yaa它的權利,但是,它不會搜索我們鍵入可編輯的組合框中的內容,那麼該怎麼辦? –
相關問題
- 1. 如何將Google搜索框添加到我的網站?
- 2. 如何在桌面應用程序中添加Google搜索框?
- 3. 添加搜索框開始搜索框
- 4. 如何在JPanel,Java Swing中添加JToolBar?
- 5. 如何添加谷歌定製搜索在我們的網站
- 6. 如何在我的網站上添加Google搜索?
- 7. 在視圖中添加Google搜索欄
- 8. Google自定義搜索的Google附加鏈接搜索框
- 9. 我想在搜索框中搜索google地圖中的位置
- 10. 如何添加Google地圖自動填充搜索框?
- 11. 將google搜索框添加到我的網站
- 12. 如何使用XAML添加搜索框
- 13. 如何將快速搜索框添加到我們的應用程序?
- 14. 如何將集成的Google搜索添加到我的網站?
- 15. 如何在Google地圖iOS中添加標籤和搜索欄?
- 16. 如何添加到Java中的對話框(Swing)?
- 17. Magento搜索框 - 如何在3columns.phtml頁面的左側添加搜索框?
- 18. 如何在谷歌搜索中添加我們網站的頁面
- 19. 如何在url中添加搜索值
- 20. 如何在uitableview中添加搜索欄?
- 21. Google附加鏈接搜索框
- 22. 如何在acf地圖中添加搜索框?
- 23. 的Drupal如何添加下拉在搜索框中
- 24. 如何在applicationBar windows phone中添加搜索框8
- 25. 如何在angularJS中添加自動完成搜索框?
- 26. 如何在wordpress中添加搜索框到論壇
- 27. 如何將我的網站的搜索欄添加到我的網站的Google搜索結果中?
- 28. 如何從Google搜索框中刪除默認的Google搜索值?
- 29. 如何在Google地圖上添加本地搜索?
- 30. 如何在Android Google地圖上添加搜索按鈕?
你想要的「自動完成」。有幾個實現,Swing實驗室,SwingX庫想到 – MadProgrammer
請參考[此鏈接] [1]。這是u有相同疑問 [1]:http://stackoverflow.com/questions/26550559/how-to-create-a-search-bar-similar-to-google-search-style -in-java-gui –