Java tutorial
//package com.java2s; import javax.swing.*; public class Main { public static String getComboBoxValue(JComboBox comp) { String selectedPath = comp.getSelectedItem().toString(); if (selectedPath == null || !selectedPath.equals(comp.getEditor().getItem())) { selectedPath = comp.getEditor().getItem().toString(); } return selectedPath; } }