len oke

Greenhorn
+ Follow
since Apr 19, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by len oke

I am trying to do this :If the user unchecks one or more checkboxes and presses the button "Remove from Basket" then they should be removed from the basket and the "Review Shopping Basket" page updated in this servlet.
Can you help me or provide hints on this?

Code
============================================================================



public class ShoppingCartSessionTracking extends HttpServlet {
public void doGet(
HttpServletRequest request,
HttpServletResponse response
) throws ServletException, IOException {
response.setContentType("text/html");

PrintWriter aPW = response.getWriter();
aPW.println("<HTML><HEAD><TITLE>Shopping Basket using Session Tracking API" +
"</TITLE></HEAD><BODY>");

String actionString = request.getParameter("submit");

if (actionString != null) {
if (actionString.equals("Add More Items")) {
System.out.println("addToShoppingCart");
addToShoppingCart(request, aPW);
}else if (actionString.equals("Review Shopping Cart")) {
reviewShoppingCart(request, aPW);
System.out.println("reviewShoppingCart");
}
else if (actionString.equals("Remove From Basket")) {
reviewShoppingCart(request, aPW);
System.out.println("reviewShoppingCart");
}
}else {
reviewShoppingCart(request, aPW);
}
aPW.println("</FORM></BODY></HTML>");
}

private static synchronized void addToShoppingCart (HttpServletRequest request,
PrintWriter aPW) {
aPW.println("<FORM ACTION='ShoppingCartSessionTracking' METHOD=GET>");
aPW.println("Add to Basket:<BR><BR>");
aPW.println("<INPUT TYPE='checkbox' NAME='items' VALUE='Socks $4.0'>Socks $4<BR>");
aPW.println("<INPUT TYPE='checkbox' NAME='items' VALUE='Shoes $30.0'>Shoes $30<BR>");
aPW.println("<BR><BR><INPUT TYPE='Submit' NAME='submit' VALUE='Review Shopping Cart'>");

}

private static synchronized void reviewShoppingCart(
HttpServletRequest request,
PrintWriter aPW) {

// get current session object. If there is not one create one
HttpSession aHttpSession = request.getSession(true);

// look for vector of items in HttpSession
Vector itemsVec = (Vector)aHttpSession.getAttribute("cart.items");

if (itemsVec == null) {
// if the vector of items is not in the HttpSession create a new Vector
aHttpSession.setAttribute("cart.items", new Vector());
itemsVec = (Vector)aHttpSession.getAttribute("cart.items");
}

// read in the new items the user wishs to add to their shopping cart
String newItems[] = request.getParameterValues("items");

// if there are new items to add to the shopping cart add them to the itemsVec
if (newItems != null) {
System.out.println("newItems.length = " + newItems.length);
for (int i=0; i<newItems.length; i++) {
itemsVec.addElement(newItems[i]);
}

// update HttpSession. Old Vector replaced
aHttpSession.setAttribute("cart.items", itemsVec);
}

aPW.println("Review Shopping Basket<BR><BR>");

if (itemsVec.size() > 0) {
Enumeration aEnumItems = itemsVec.elements();

float count = 0;
aPW.println("<UL>");

while (aEnumItems.hasMoreElements()) {
// retrieves the price from the item description
// so that all the prices of all the items can be added to
// give a total
String details = (String)aEnumItems.nextElement();
int positionOfPound = details.indexOf("$") + 1;
String numberStr = details.substring(positionOfPound);
float price = Float.parseFloat(numberStr);
count = count + price;
aPW.println("<LI>" + details);
}

aPW.println("<BR><BR>Total: $" + count);
aPW.println("</UL>");
}else {
aPW.println("No items currently in basket");
}
aPW.println("<FORM ACTION='ShoppingCartSessionTracking' METHOD=GET>");
aPW.println("<INPUT TYPE='checkbox' NAME='items' VALUE='Shirt $16'>Shirt $16<BR>");
aPW.println("<INPUT TYPE='checkbox' NAME='items' VALUE='Trousers $30'>Trousers $30<BR>");
aPW.println("<INPUT TYPE='checkbox' NAME='items' VALUE='Jumper $20'>Jumper $20<BR>");
aPW.println("<BR><BR><INPUT TYPE='Submit' NAME='submit' VALUE='Add More Items'>");
aPW.println("<BR><BR><INPUT TYPE='Submit' NAME='submit' VALUE='Remove from Basket'>");
}
}
16 years ago