I am developing a web application. I have a java class which has array of type String. In the same package, I have .jsp page which handles UI. I want to show contents of java String array into jsp's select tag.
<select>
   <option>_____</option>
</select>
How do I populate this select box with Java String array?
 
     
     
     
     
    