XQuery は初めてです。次のクエリを使用して、XML ファイルからデータを選択できます。
for $contactscontent in doc('/opt//contact.xml')//Contacts/Contact
return $contactscontent/FirstName
ここでの問題は、メソッドへのcontact.xml
パスを指定せずにデータを読みたいということです。doc()
次のように、Jsp に Document オブジェクトがあります。
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new File("/opt//contact.xml"));
上記の「doc」オブジェクトを使用して、XML ファイルからデータを読み取りたいと考えています。どうすればこれを達成できますか?