how to change /edit node value of xml which have a

2019-09-16 03:07发布

how to change /edit node value of xml which have an attribute "add" with key and value pair in android ? Below is my xml , i want to change/edit the value of ipaddress in the xml via android java and save that new file to the text file from which i have read the value of the xml.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
  <add key="ip" value="http://192.168.2.56:777/root/Calculator.Add" />
  <add key="comport" value="COM9" />
</appSettings>
</configuration>  

to

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
  <add key="ip" value="new value of  ip/ edited value" />
  <add key="comport" value="COM9" />
</appSettings>
</configuration> 

I tried this way to save the value for ip ,but no luck

       saveConfigSettingsBtn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
        String  newIpAddress=ipAddressEditText.getText().toString();


              value = new ArrayList<String>(10);
                 key = new ArrayList<String>(10);
                 ArrayList<String> mImageLink = new ArrayList<String>();
                 try {
                  File root = Environment.getExternalStorageDirectory();
                  File file = new File(root, "config/App_config.txt");
                  DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
                  DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
                  Document doc = docBuilder.parse(file);                    
               // Change the content of node
                  Node nodes = doc.getElementsByTagName("add").item(0);
                  //nodes.setTextContent(newIpAddress);
                  nodes.setNodeValue(newIpAddress);

                  Transformer transformer = TransformerFactory.newInstance().newTransformer();
                  transformer.setOutputProperty(OutputKeys.INDENT, "yes");

                  // initialize StreamResult with File object to save to file
                  StreamResult result = new StreamResult(file);
                  DOMSource source = new DOMSource(doc);
                  transformer.transform(source, result);

                  Log.d("newip", newIpAddress);
                 } catch (Exception e) {
                  System.out.println("XML Parsing Excpetion = " + e);
              } 
        }
    });

1条回答
\"骚年 ilove
2楼-- · 2019-09-16 03:37

I solved the issue of editing the attribute and i can edit and save the attribute value of the "add" element, below is code which worked for me :

            saveConfigSettingsBtn.setOnClickListener(new OnClickListener() {            
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
        String  newIpAddress=ipAddressEditText.getText().toString();            
                 ArrayList<String> mImageLink = new ArrayList<String>();
                 try {
                  File root = Environment.getExternalStorageDirectory();
                  File file = new File(root, "config/App_config.txt");
                  DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
                  DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
                  Document doc = docBuilder.parse(file);                    
               // Change the content of node
                  Node nodes = doc.getElementsByTagName("add").item(0);

                  NodeList keyList = doc.getElementsByTagName("add");
                  Node Keynode = keyList.item(0);
                  Element fstElmnt = (Element) Keynode;  
                  fstElmnt.setAttribute("value", newIpAddress);//set the value of new edited ip here
                  String newNodeValue =   fstElmnt.getAttribute("value");
                  Log.d("newNodeValue", newNodeValue);                

                  Transformer transformer = TransformerFactory.newInstance().newTransformer();
                  transformer.setOutputProperty(OutputKeys.INDENT, "yes");

                  // initialize StreamResult with File object to save to file
                  StreamResult result = new StreamResult(file);
                  DOMSource source = new DOMSource(doc);
                  transformer.transform(source, result);

                  Log.d("newip", newIpAddress);
                 } catch (Exception e) {
                  System.out.println("XML Parsing Excpetion = " + e);
              } 
        }
    });
查看更多
登录 后发表回答