The output of the method is an Arraylist of strings (The class testh which contained the method displayPrice is already worked using Eclipse )
package classe_j;
public class testh {
public static ArrayList<String> displayPrice(String inputFileName, String categorie) {
return priceP;
} }
Now i want to display the content of the ArrayList in table as the following
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page import="classe_j.*"%>
..........
<th><%=testh.displayPrice() %></th>
but i got no errors but when run it i got SystemError
is there any better manner to do this
Thank you in advance