开发者

Java: Jlist setSelectedValue() but ignoreCase

myJList.setSelectedValue("someTHING", true); //if "SomeThing" in the list, it won't be selected

I want to set the value, but se开发者_如何学JAVAems like setSelectedValue is case-sensitive, I want to select a value but ignore case-sensitive, is it possible? and how?


Instead of adding String objects to your ListModel you could write your own String wrapper and override the equals(Object o) method to be case insensitive. This might have implications for other areas of your app.


I can't see any one shot method for that but merging one or two method you can have this.

call getNextMatch() until you find the exact element and then setSelectedValue


setSelectedValue() is not case sensitive, Java is case sensitive.
Two solutions:

  1. Use all upper or lower case in your List
  2. When selecting the value loop through the list and compare the value to the String you want to select using the equalsIgnoreCase() method of String.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜