Мне нужна простая модификация кода Java для импорта только текстового содержимого элемента XML вместо всего элемента.
Как получить только значение имени тега, используя getElementsByTagName()
?
Это файл XML, который я читаю, с именем A (1) .xml :
<?xml version="1.0" encoding="UTF-8"?>
<site
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<map>I want to import this content only</map>
</site>
Обратите внимание, что файл содержит элемент <map>
в одной строке от конца,
Это содержимое файла XML, в который я пишу:
<?xml version="1.0" encoding="UTF-8"?>
<tap
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<site>I do not want to lose this content </site>
</tap>
Я хочу извлечь текстовое значение TagName ("map"), но не сами теги, изапишите этот текст в файл, показанный выше.Это мой код:
package startimes;
import java.io.File;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.*;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.xml.sax.SAXException;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import java.io.*;
public class Startimes {
public static void main(String argv[]) {
int r = 1;
int l = 1;
int s = 1;
String nom;
for (int i = 0; i < s; i++) {
nom = "B (" + (i + 1);
t(r, r + l, nom);
r = r + l;
}
}
public static void t(int f, int g, String z) {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = null;
Document doc = null;
Document doc2 = null;
String a = "C:\\Users\\chirap\\Desktop\\Startimes\\C.xml";
String c;
try {
db = dbf.newDocumentBuilder();
doc = db.parse(new File(a));
doc2 = db.parse(new File("C:\\Users\\chirap\\Desktop\\Startimes\\A (1).xml"));
NodeList ndListFirstFile = doc.getElementsByTagName("site");
Node nodeArea = doc.importNode(doc2.getElementsByTagName("map").item(0), true);
NodeList nList2 = doc2.getElementsByTagName("map");
for (int i = f; i < g; i++) {
c = i + "";
doc2 = db.parse(new File("C:\\Users\\chirap\\Desktop\\Startimes\\A (" + c + ").xml"));
for (int temp = 0; temp < nList2.getLength(); temp++) {
nodeArea = doc.importNode(doc2.getElementsByTagName("map").item(temp), true);
ndListFirstFile.item(0).appendChild(nodeArea);
}
}
TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(new StringWriter());
transformer.transform(source, result);
Writer output = new BufferedWriter(new FileWriter("C:\\Users\\chirap\\Desktop\\Startimes\\" + z + ").xml"));
String xmlOutput = result.getWriter().toString();
output.write(xmlOutput);
output.close();
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (TransformerException e) {
e.printStackTrace();
}
}
}
Я хочу получить такой результат:
<?xml version="1.0" encoding="UTF-8"?>
<tap
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<site>I do not want to lose this content
I want to import this content only</site>
</tap>
Обратите внимание, что последняя строка, кроме одной, должна содержать только текст, но когда я запускаю свой код, он выглядит так:
<map>I want to import this content only</map>
Я хочу исключить эти <map>
теги.Заранее спасибо