Please help me out where i am unable to show the below "out.println" data in table format.
if(rs.next())
{
out.println(rs.getString("Case_Title"));
out.println(rs.getString("Problem_Descr"));
out.println(rs.getString("Problem_Submit"));
}
}
catch(Exception e)
{
e.printStackTrace();
}