私の目的は、XML ファイルを読み取り、(技術者ではない) ユーザーがこのファイルを変更できるようにする単純なインターフェイスを提供することです。xml ファイルは Flash フォト ギャラリーを駆動し、その Flash Actionscript によって事前定義されています。
XML のサンプルは次のとおりです。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<photostack3d>
<photos>
<photo>
<thumb src="Thumbs/bed1.jpg"/>
<img src="Photos/bed1.jpg"/>
<caption text="Master Bedroom"/>
<desc><![CDATA[<h1>Master Bedroom</h1><br>The master bedroom is roomy and has a beautiful view of the landscaped back yard.]]></desc>
</photo>
</photos>
</photostack3d>
この XML では、ギャラリーによって表示される各写真を定義するため、複数の写真ノードが存在する可能性があります...
これで、DOM を使用してファイルを作成するところまで来ました。DOM を使用して、さらに編集するためにそれを読み込もうとすると、問題が発生します。すべての写真要素を取得できますが、そこにある属性、つまり、thumb、img、caption、desc を取得するのに問題があります。現在、私は以下を持っています:
private void loadXML(String filePath)
{
try
{
File fXmlFile = new File(filePath);
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
doc.getDocumentElement().normalize();
System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
NodeList photosList = doc.getElementsByTagName("photos");
System.out.println("-----------------------");
NodeList photoList = doc.getElementsByTagName("photo");
System.out.println("Number of photo nodes: " + photoList.getLength());
for (int temp = 0; temp < photoList.getLength(); temp++)
{
NodeList thumbList = doc.getElementsByTagName("thumb");
Element thumbElement = (Element) thumbList.item(0);
String thumbName = thumbElement.getAttribute("thumb");
System.out.println("thumb name: " + thumbName);
//Node nNode = photoList.item(temp);
//if (nNode.getNodeType() == Node.ELEMENT_NODE)
//{
// Element eElement = (Element) nNode;
// System.out.println("Source Name : " + eElement.getAttribute("text")); //.getElementsByTagName("thumb"));
//System.out.println("Source Name : " + getTagValue("thumb", eElement));
System.out.println("-----------------------");
//}
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
ご覧のとおり、これらの属性を取得するためにさまざまな方法を試してきましたが、今のところ、値が戻ってくることはありません。どこが間違っていますか?