<%@ page contentType="text/xml; charset=UTF-8"%>
<?xml version='1.0' encoding='UTF-8'?>
<response>
<%
for (int i = 0; i < list.size(); i++ ) {
KeywordForm data = (KeywordForm)list.get(i);
%>
<wordinfo>
<word><%=StringUtil.replace(data.getK_text(),"&","&")%></word>
<spell><%=data.getK_seq()%></spell>
</wordinfo>
<%
}
%>
</response>