rexservice.jsp 496 B

123456789101112131415
  1. <%
  2. //request.setCharacterEncoding("utf-8");
  3. //System.setProperty("rexpert.properties.dir", "C:/RexServer30/WEB-INF/classes/Rexpert/conf");
  4. String strId = (request.getParameter("ID") == null ? "" : request.getParameter("ID"));
  5. if (strId.equalsIgnoreCase("SDXML")) {
  6. response.setContentType("text/xml;charset=UTF-8");
  7. } else if (strId.equalsIgnoreCase("SDCSV")) {
  8. response.setContentType("text/html;charset=UTF-8");
  9. }
  10. Rexpert.DataServer.Main.fnRun(request, response, application);
  11. %>