Preferred way of getting the selected item of a JComboBox

前端 未结 6 555
情歌与酒
情歌与酒 2021-01-31 16:54

HI,

Which is the correct way to get the value from a JComboBox as a String and why is it the correct way. Thanks.

String x = JComboBox.getSelectedItem().         


        
6条回答
  •  后悔当初
    2021-01-31 17:09

    Note this isn't at heart a question about JComboBox, but about any collection that can include multiple types of objects. The same could be said for "How do I get a String out of a List?" or "How do I get a String out of an Object[]?"

提交回复
热议问题