ここでは、サイズを取得して価格を計算する問題に取り組んでいます。属性の価格に取り組む必要があるだけですが、さらに先に進む方法がわかりません。ネストされた for ループを作成しようとしましたが、失敗しました。
<?xml version= "1.0" encoding= "UTF-8" standalone="yes" ?>
<PizzaParlor>
<Order>
<Pizza Size="large">
<Vegetarian>
<Mushroom Price="1.99">
</Mushroom>
</Vegetarian>
</Pizza>
<Pizza Size="small">
<Vegetarian>
<Spinach Price="1.45">
</Spinach>
</Vegetarian>
</Pizza>
<Pizza Size="medium">
<Vegetarian>
<Pineapple Price="1.79">
</Pineapple>
</Vegetarian>
</Pizza>
<Pizza Size="small">
<Vegetarian>
<Mushroom Price="1.99">
</Mushroom>
</Vegetarian>
</Pizza>
<Pizza Size="large">
<Vegetarian>
<Mushroom Price="1.99">
</Mushroom>
</Vegetarian>
</Pizza>
<Pizza Size="large">
<non-vegetarian>
<Anchovies Price="1.99">
</Anchovies>
</non-vegetarian>
</Pizza>
<Pizza Size="small">
<non-vegetarian>
<Ham Price="1.45">
</Ham>
</non-vegetarian>
</Pizza>
<Pizza Size="medium">
<non-vegetarian>
<Anchovies Price="1.79">
</Anchovies>
</non-vegetarian>
</Pizza>
<Pizza Size="small">
<non-vegetarian>
<Pepperoni Price="2.49">
</Pepperoni>
</non-vegetarian>
</Pizza>
<Pizza Size="large">
<non-vegetarian >
<Chicken Price="2.99">
</Chicken>
</non-vegetarian >
</Pizza>
</Order>
</PizzaParlor>
私は私のJavaプログラムのためにこれを持っています:
package pizza;
import java.io.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;
import org.xml.sax.*;
public class Pizza
{
public static void main (String [] args)
throws
IOException,
ParserConfigurationException,
SAXException
{
File CFile = new File ("pizzaparlor.xml");
DocumentBuilderFactory factory =
DocumentBuilderFactory.newInstance ();
factory.setIgnoringComments (true);
factory.setIgnoringElementContentWhitespace (true);
factory.setValidating (true);
DocumentBuilder builder = factory.newDocumentBuilder ();
Document document = builder.parse (CFile);
Element root = document.getDocumentElement ();
Node orderNode = root.getFirstChild();
Node Pizza = orderNode.getFirstChild();
int countofPizzas = 0;
for(int i = 0 ; Pizza!=null; i ++){
countofPizzas ++;
Pizza = Pizza.getNextSibling();
}
System.out.println(countofPizzas);
double price = 0.0;
NodeList Orders = root.getFirstChild().getChildNodes();
for (int i = 0; i < Orders.getLength() ; i++)
{
Element pizzaSize = (Element) Orders.item(i);
String pSize = pizzaSize.getAttribute("Size");
if (pSize.equalsIgnoreCase("Large"))
price = 10.0;
if (pSize.equalsIgnoreCase("Medium"))
price = 7.0;
if (pSize.equalsIgnoreCase("Small"))
price = 5.0;
System.out.println("Pizza " + i + " " + pSize + " " + price);
}
}
}