DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 基於XML的購物車的實現
基於XML的購物車的實現
編輯:XML詳解     

購物車是電子商務網站中不可缺少的組成部分,但目前大多數購物車只能作為一個顧客選中商品的展示,客戶端無法將購物車裡的內容提取出來滿足自己事務處理的需要,而這一點在有些電子商務活動中很有必要。XML的出現使得網絡上傳輸的數據變得有意義起來,我們可以根據不同的要求以不同的樣式將一個購物車的內容顯示出來。

本文將詳細分析一個由Java實現的基於XML的購物車。下面是一個包含了五件商品的購物車的XML內在結構:它的根元素為cart,total元素表示購物車內的總金額,每個item元素表示一件商品,item裡的子元素分別標明了該商品的具體信息,可根據實際情況添加、修改或刪除。

在這裡,需要建立一個表示購物車的類:XMLCart.java,它是一個JavaBean,所以它包含了一個空的構造函數。這個類包含了購物車的一些基本功能: 生成一個空的購物車,往購物車裡添加商品,刪除購物車裡的商品,改變購物車內商品的數量以及清空購物車等。它擁有一個全局私有變量“private XMLDocument myCart”,myCart用來存儲購物車裡的詳細內容,購物車的基本功能就是對它的操作,它的類型是XMLDocument,即一個XML文檔。這樣,對購物車的操作就轉換成對myCart中的子元素的添加、刪除,及元素值的計算、修改等。

1. 清空購物車

清空購物車即生成一個空的購物車。這裡空購物車是一個含有根元素cart及其元素total的XML文檔,total元素是購物車的總金額,它的初始值為0,其XML具體形式如下:

< ?XML version=‘1.0’ encoding=‘gb2312’?>
< cart>
< total>0< /total>
< /cart>
將這個XML字符串由parseString函數轉換成XMLDocument存入myCart。
其代碼如下:
public void emptyCart() throws IOException,SAXException{
    String stringCart=“< ?XML version=‘1.0’encoding=‘gb2312’?> ”+
       “< cart>< total>0< /total>< /cart>”;
      myCart=parseString(stringCart);
    }

2. 添加商品
添加商品,即將傳入的item元素添加到根元素cart裡,
其中item裡包括商品詳細信息,
同時計算total的值。其代碼如下:
public void addItemToCart(String stringItem)
throws IOException,SAXException{
//將item由String轉換為XMLDocument
XMLDocument itemAdded=parseString(stringItem);
//取出item節點,並復制它
NodeList itemList=itemAdded.getElementsByTagName(“item”);
Node item=itemList.item(0);
Node cloneItem=item.cloneNode(true);
//如果購物車為空,則構造一個新的購物車
if(isCartEmpty()){
     myCart.emptyCart();
}
//如果該商品不在購物車中,則插入該商品,並計算總金額
if(!isItemExist(item,myCart)){
//取myCart的根元素,並將復制的item節點添加到後面
Element cartRoot=myCart.getDocumentElement();
Node cartNode=cartRoot.appendChild(cloneItem);       
computeTotal();    //計算總金額
        }
    }
3. 刪除商品
刪除商品,即根據商品代碼將該商品的item元素
從myCart的根元素cart中刪除,
並重新計算total的值:
public void moveItemFromCart(String id){
//取出以item為單位的節點集cartList以及根元素cartRoot
  NodeList cartList=myCart.getElementsByTagName(“item”);
     Element cartRoot=myCart.getDocumentElement();
      //在cartList中查找代碼為選中id的商品
    for(int x=0;x< cartList.getLength();x++){
      Node itemNode=cartList.item(x);
      String  idValue=itemNode.getFirstChild().
      getFirstChild().getNodeValue();
      //如果找到,則從cartRoot中刪除該節點,並跳出循環
if(idValue.equals(id)){
      itemNode=cartRoot.removeChild(itemNode);
       break;
            }
        }
        computeTotal();    //計算總金額
    }
4. 改變商品數量
根據客戶在頁面上所填的數量,修改myCart中quantity,
並重新計算total:
public void addQuantityToCart(String qnty) throws
IOException,SAXException{
    //將傳過來的包含商品數量的一組XML字符串轉換為XML文檔
XMLDocument quantityChanged=parseString(qnty);
//取出包含新數量的quantity節點集和myCart中的quantity節點集
NodeList quantityList=quantityChanged.getElementsByTagName(“quantity”);
NodeList cartList=myCart.getElementsByTagName(“quantity”);
//循環改變商品的數量
for(int x=0;x< cartList.getLength();x++){
//將新quantity的值賦給myCart中相應的quantity中去
String quantity=quantityList.item(x).getFirstChild().getNodeValue();
cartList.item(x).getFirstChild().setNodeValue(quantity);
}
computeTotal();    //計算總金額
    }
5. 計算總金額
即計算total的值,其中total=∑(price*quantity):
public void computeTotal(){
    NodeList quantityList=myCart.getElementsByTagName(“quantity”);
    NodeList priceList=myCart.getElementsByTagName(“price”);
    float total=0;
    //累加總金額
for(int x=0;x< priceList.getLength();x++){
    float quantity=Float.parseFloat(quantityList.item(x)
    .getFirstChild().getNodeValue());
  float price=Float.parseFloat(priceList.item(x).getFirstChild().getNodeValue());
    total=total+quantity*price;
    }
    //將total附給myCart的total
String totalString=String.valueOf(total);
    myCart.getElementsByTagName(“total”).
    item(0).getFirstChild().setNodeValue(totalString);
  }
6. 判斷購物車是否為空
通常在添加新商品時,還需要知道購物車是否為空,
如果為空的話,則要生成一個新的購物車。
public boolean isCartEmpty(){
//item的節點集,如果該節點集包含的節點數為0,則購物車內沒有商品,返回true
NodeList itemList=myCart.getElementsByTagName(“item”);
if(itemList.getLength()==0) return true;
else return false;
}
7. 判斷所選商品是否已在購物車內
即判斷新傳來商品的item是否已在myCart中存在,如果存在,返回true。
public boolean isItemExist(Node item, XMLDocument cart){
  NodeList itemList=cart.getElementsByTagName(“item”);
      Node id=item.getFirstChild();
      String idValue=id.getFirstChild().getNodeValue();
      if(itemList.getLength()!=0){
          for(int x=0;x< itemList.getLength();x++){
           Node itemTemp = itemList.item(x);
          7Node idTemp=itemTemp.getFirstChild();
           String idTempValue=idTemp.getFirstChild().getNodeValue();
            if(idValue.equals(idTempValue)) return true;
            }
          return false;
        }
      return false;
    }

除上述方法外,XMLCart還包括將XML字符串由輸入時的String轉換成XMLDocument的方法parseString,以及用於輸出時將XSL賦給myCart並返回String型XML字串的 cartTurnToStringWithXSL方法來輔助購物車主要操作的實現,這裡不再贅述。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved