に存在するすべてのキーを取得する必要がありますHashTable
。私は次のコードでそれを行います:
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// Important: doGet get the 4 input.
// Parameter name: "Standard", "Section", "Name", "Rollno"
// But i am dealing with only 3 input to test the code. (not considering "Rollno" as of now, So RollNo will be empty string as of now.)
String output = "";
response.setContentType("text/html");
// referer tag in the header tells that which page sent the request.
// If this request is sent by Search.jsp page, the look at which button
// made the request and process the request accordingly.
if (request.getHeader("referer") != null
&& (request.getHeader("referer").endsWith("Search.jsp"))) {
Enumeration<String> parma_names = request.getParameterNames();
while ((parma_names != null) && (parma_names.hasMoreElements())) {
String ele_name = parma_names.nextElement();
if (ele_name.equalsIgnoreCase("data1")) {
output = requestMadeForDialog(request, ele_name);
response.getWriter().write(output);
} else {
// See here...
output = requestMadeForReport(request, ele_name);
response.getWriter().write(output);
break;
}
}
} else {
// something here...
}
}
報告の IF 要求が行われた場合、以下は報告のためのコードです。
private String requestMadeForReport(HttpServletRequest request,
String ele_name) {
log("requestMadeForReport and element name is " + ele_name);
// received parameter may be empty, If param is empty then it should not
// be included in where clause.
String standard = request.getParameter("standard");
String section = request.getParameter("section");
String name = request.getParameter("name");
String rollno = request.getParameter("rollno");
Hashtable<String, String> param = new Hashtable<>();
if (standard != null && (!standard.isEmpty())) {
param.put("standard", standard);
}
if (section != null && (!section.isEmpty())) {
param.put("section", section);
}
if (name != null && (!name.isEmpty())) {
param.put("name", name);
}
if (rollno != null && (!rollno.isEmpty())) {
param.put("rollno", rollno);
}
generateReport(param);
return null;
}
// 空でも null でもないパラメーターのみが、実際のレポート ジェネレーター メソッドに渡されます。
private void generateReport(Hashtable<String, String> param) {
// TODO Auto-generated method stub
Enumeration<String> keyset = param.keys();
while (keyset.hasMoreElements()) {
String e = keyset.nextElement();
}
}
しかしNoSuchElementException
、最後の要素を取得するのに時間がかかります。MyHashTable
にはキー {"Section", "Name", "Standard"} が含まれ、while ループ 'e' では値 "Section" と "Standard" のみが取得されます。そして3回目に例外がスローされます。
また、[リンク] ( Java の HashMap からキーを取得) を試しましたが、ここでも同じ問題が発生します。