- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有这个 XML 文件:
<Credentials>
<WebsiteApplication id="test">
<Username>ADMIN</Username>
<Password>ADMIN</Password>
</WebsiteApplication>
</Credentials>
<Credentials>
<WebsiteApplication id="test2">
<Username>ADMIN2</Username>
<Password>ADMIN2</Password>
</WebsiteApplication>
</Credentials>
只有当“WebsiteApplication”节点的 id 与输入的 ID 相同时,我才想编辑“WebsiteApplication”节点的用户名(或密码)。
我尝试了一些东西,但它不起作用......
System.out.println("Insert the id:....");
BufferedReader websiteIn = new BufferedReader(new InputStreamReader(System.in));
String Editid = websiteIn.readLine().toString();
Document doc = SecondaryFuncts.FindXML();
Element root = doc.getDocumentElement();
NodeList rootlist = root.getChildNodes();
for(int i=0; i<rootlist.getLength(); i++)
{
//THERE IS NO PROBLEM UNTILL NOW...
//And now i trying to take the id and check if matches
//with my input and them change nodes elements...
Element Applications = (Element)rootlist.item(i);
NamedNodeMap id = Applications.getAttributes();
for(int ids = 0 ; ids <id.getLength(); ids++)
{
I tried a lot in this loop but nothing worked.. what can i do here?
Lets assume that i want username and password to change both as "test"
}
最佳答案
使用 XPath 来完成此类任务。您将直接选择正确的 WebsiteApplication
元素,然后可以修改其 Username
和 Password
子元素。
使用以下 XPath /Credentials/WebsiteApplication[@id="XXX"]
选择正确的元素,其中 XXX
是用户提供的输入。
然后只需检索该元素的子元素并更改用户名/密码内容。
String inputId = "test1";
String xpathStr = "//Credentials/WebsiteApplication[@id='" + inputId + "']";
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expr = xpath.compile(xpathStr);
Node node = (Node)expr.evaluate(doc, XPathConstants.NODE);
// node is the correct <WebsiteApplication> element
// do what you have to do with its children using node.getChildNodes()
// or you can even access directly the two elements
expr = xpath.compile(xpathStr + "/Username");
Node username = (Node)expr.evaluate(doc, XPathConstants.NODE);
// and set their values using the setTextContent() method
username.setTextContent("test-username");
expr = xpath.compile(xpathStr + "/Password");
Node password = (Node)expr.evaluate(doc, XPathConstants.NODE);
password.setTextContent("test-password");
查看完整示例:
import java.io.*;
import javax.xml.parsers.*;
import javax.xml.transform.*;
import javax.xml.transform.dom.*;
import javax.xml.transform.stream.*;
import javax.xml.xpath.*;
import org.w3c.dom.*;
import org.xml.sax.*;
public class SO12477695 {
public static void main(String[] args) throws Exception {
DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = db.parse(new InputSource(new StringReader("<root>\r\n" + //
"<Credentials>\r\n" + //
" <WebsiteApplication id=\"test\">\r\n" + //
" <Username>ADMIN</Username>\r\n" + //
" <Password>ADMIN</Password>\r\n" + //
" </WebsiteApplication>\r\n" + //
"</Credentials>\r\n" + //
"<Credentials>\r\n" + //
" <WebsiteApplication id=\"test2\">\r\n" + //
" <Username>ADMIN2</Username>\r\n" + //
" <Password>ADMIN2</Password>\r\n" + //
" </WebsiteApplication>\r\n" + //
"</Credentials>\r\n" + //
"</root>")));
String inputId = "test2";
String xpathStr = "//Credentials/WebsiteApplication[@id='" + inputId + "']";
// retrieve elements and change their content
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expr = xpath.compile(xpathStr + "/Username");
Node username = (Node) expr.evaluate(doc, XPathConstants.NODE);
username.setTextContent("test-username");
expr = xpath.compile(xpathStr + "/Password");
Node password = (Node) expr.evaluate(doc, XPathConstants.NODE);
password.setTextContent("test-password");
// output the document
Transformer transformer = TransformerFactory.newInstance().newTransformer();
StringWriter writer = new StringWriter();
transformer.transform(new DOMSource(doc), new StreamResult(writer));
System.out.println(writer.toString());
// the document is now saved, you may want to save it in a file.
}
}
输出如下:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<root>
<Credentials>
<WebsiteApplication id="test">
<Username>ADMIN</Username>
<Password>ADMIN</Password>
</WebsiteApplication>
</Credentials>
<Credentials>
<WebsiteApplication id="test2">
<Username>test-username</Username>
<Password>test-password</Password>
</WebsiteApplication>
</Credentials>
</root>
关于Java - 根据节点的属性编辑节点元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12477695/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!