少なくとも 5 つの要素を含む Hashtable から最初の項目を取得する方法を見つけようとしています。私はこれを持っています:
Hashtable parkingSlots;
parkingSlots = new Hashtable();
parkingSlots.put("P1", null);
parkingSlots.put("P2", null);
parkingSlots.put("P3", null);
parkingSlots.put("P4", null);
parkingSlots.put("P5", null);
Enumeration gPL = parkingSlots.Keys();
While( gPL.hasMoreElements()){
String parkingNum = (String) gPL.nextElement();
**// Here I've this result: P1, P2, P3, P4, P5 but I want to get only the first item, in this case P1**
}