I have a java method that returns a String array. Also there is a jsp page which has an array variable. How do I assign this jsp variable with the value returned by the java method?
I tried,
<c:set var="list" value="<%= engine.getList(); %> "/>
where engine is the java object. But this is not working. No values are getting stored.
Java Code:
public String[] getCatEntId() {
    ArrayList<String> catEntIdArrList = new ArrayList<String>();
    Statement stmnt = null;
    String itemUrl = null;
    int i = 0;
    String sql = "SELECT * FROM ITEM WHERE ITEMID LIKE '%it%'";
    try {
        stmnt = getMySqlDbConn().createStatement();
        ResultSet rs = stmnt.executeQuery(sql);
        while (rs.next()) {
            itemUrl = rs.getString(1);
            String catalogId = itemUrl.substring((itemUrl.indexOf("productId=") + 10), (itemUrl.indexOf("productId=") + 15));
            System.out.println("Catalog Id : " + catalogId);
            catEntIdArrList.add(catalogId);
            i++;
        }
    } catch (SQLException e) {
        e.printStackTrace();
    } 
    return catEntIdArrList.toArray(new String[catEntIdArrList.size()]);
}
Any help would be appreciated!!!
 
    