修改所有xml檔案中的某些內容

weixin_34037977發表於2018-10-19

我的需求是:將所有專案的pom.xml中的ip地址替換

package com.company;


import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.SAXReader;
import org.dom4j.io.XMLWriter;

import java.io.*;
import java.util.ArrayList;
import java.util.List;

public class Main {


    public static void main(String[] args) throws IOException, DocumentException {
        test("D:\\JavaProjects\\");
    }

    private static void test(String fileDir) throws IOException, DocumentException {
        List<File> fileList = new ArrayList<File>();
        File file = new File(fileDir);
        File[] files = file.listFiles();// 獲取目錄下的所有檔案或資料夾
        if (files == null) {// 如果目錄為空,直接退出
            return;
        }
        // 遍歷,目錄下的所有檔案
        for (File f : files) {
            if (f.isFile() && "pom.xml".equals(f.getName())) {
                fileList.add(f);
            } else if (f.isDirectory()) {
                test(f.getAbsolutePath());
            }
        }
        for (File f1 : fileList) {
            System.out.println(f1.getAbsolutePath()+"----------------------------------------------");
            XML(f1);
        }
    }


    public static void XML(File f1) throws DocumentException, IOException {
        /*
         * 2.java修改xml
         */
        // 建立SAXReader物件
        SAXReader sr = new SAXReader(); // 需要匯入jar包:dom4j
        sr.setEncoding("UTF8");//這裡設定檔案編碼
        // 關聯xml
        Document document = sr.read(f1);

        // 獲取根元素
        Element root = document.getRootElement();
        getNodes(root);
        // 呼叫下面的靜態方法完成xml的寫出
        saveDocument(document, f1);
    }

    /**
     * 從指定節點開始,遞迴遍歷所有子節點
     *
     * @author chenleixing
     */
    public static void getNodes(Element node) {
        System.out.println("--------------------");
        //當前節點的名稱、文字內容和屬性
        System.out.println("當前節點名稱:" + node.getName());//當前節點名稱
        System.out.println("當前節點的內容:" + node.getTextTrim());//當前節點名稱
        if (node.isTextOnly()) {
            String textTrim = node.getText();
            if (textTrim!=null) {
                if (textTrim.contains("10.88.99.2")) {
                    String s = textTrim.replaceAll("10\\.88\\.99\\.2", "10.88.88.176");
                    node.setText(s);
                }
            }
        }
        //遞迴遍歷當前節點所有的子節點
        List<Element> listElement = node.elements();//所有一級子節點的list
        for (Element e : listElement) {//遍歷所有一級子節點
            getNodes(e);//遞迴
        }
    }


    // 下面的為固定程式碼---------可以完成java對XML的寫,改等操作
    public static void saveDocument(Document document, File xmlFile) throws IOException {
        Writer osWrite = new OutputStreamWriter(new FileOutputStream(xmlFile));// 建立輸出流
        OutputFormat format = OutputFormat.createPrettyPrint(); // 獲取輸出的指定格式
        format.setEncoding("UTF-8");// 設定編碼 ,確保解析的xml為UTF-8格式
        XMLWriter writer = new XMLWriter(osWrite, format);// XMLWriter
        // 指定輸出檔案以及格式
        writer.write(document);// 把document寫入xmlFile指定的檔案(可以為被解析的檔案或者新建立的檔案)
        writer.flush();
        writer.close();
    }
}

相關文章