ページ js コード
url : '...',
type : 'POST',
dataType : 'xml',
error : function(xml) {
alert("XML ドキュメントの読み込みエラー" xml);
},
成功: function(xml) {
$(xml).find("X").each(function(i) {
alert($(this). attr("Xattr"));
});
}
});
response.setContentType("text/xml; charset=utf-8");
response.setCharacterEncoding("utf-8");
PrintWriter pw = response.getWriter();
Document doc = new Document();//XML ファイルを取得
doc.write(pw);
return null;
}