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:
- Use all upper or lower case in your List
- 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.
精彩评论