Skip to content

Instantly share code, notes, and snippets.

@smd877
Created September 27, 2012 10:13
Show Gist options
  • Save smd877/3793276 to your computer and use it in GitHub Desktop.
Save smd877/3793276 to your computer and use it in GitHub Desktop.
registration_idを取得する用のjsp
<%@ page import="java.util.Enumeration" %>
<%
Enumeration<String> en = request.getParameterNames();
while (en.hasMoreElements()) {
String name = en.nextElement();
System.out.print(name + " = ");
System.out.println("" + request.getParameter(name));
}
out.println("fin.");
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment