2017년 6월 10일 토요일

JSP : xml 통신 예제

<%@ 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>