替换xml中某些特定的elements

替换xml中某些node, 如<name>zhangsan</name>想替换成<name>lisi</name>:

package strip;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Properties;

public class StripXMLElements {

    public static void main(String[] args) {
        String oldfilename = args[0];
        String newfilename = args[1];
        String propertyfile = args[2];

        Properties prop = new Properties();
        try {
            FileInputStream fis = new FileInputStream(propertyfile);
            prop.load(fis);
            String elements = prop.getProperty("STRIP_ELEMENTS");

            if ((elements != null) && (!elements.equals(""))) {
                stripElements(oldfilename, elements, newfilename);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void stripElements(String oldFile, String stripElements,
            String newFile) throws IOException {

        String start = null;
        String end = null;
        int startIndex;
        int endIndex;
        String line = null;
        BufferedReader br = null;
        FileReader fr = null;
        FileWriter fw = null;
        BufferedWriter bw = null;
        String[] strs = stripElements.split(";");

        File file = new File(oldFile);
        try {
            fr = new FileReader(file);
            br = new BufferedReader(fr);
        } catch (FileNotFoundException e1) {
            e1.printStackTrace();
        }

        if (!file.exists()) {
            try {
                throw new FileNotFoundException();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
        } else {
            fw = new FileWriter(newFile, true);
            bw = new BufferedWriter(fw);
            while ((line = br.readLine()) != null) {
                for (String str : strs) {
                    start = "<" + str + ">";
                    end = "</" + str + ">";
                    if (line.contains(start) && line.contains(end)) {
                        startIndex = line.indexOf(start) + start.length();
                        endIndex = line.indexOf(end);
                        line = line
                                .replace(line.substring(startIndex, endIndex),
                                        "STRIPED");
                        bw.write(line);
                        bw.newLine();
                        bw.flush();
                        line = br.readLine();
                        for (String s : strs) {
                            String starts = "<" + s + ">";
                            String ends = "</" + s + ">";
                            if (line.contains(starts) && line.contains(ends)) {
                                int startIndexs = line.indexOf(starts)
                                        + start.length();
                                int endIndexs = line.indexOf(ends);
                                line = line.replace(
                                        line.substring(startIndexs, endIndexs),
                                        "STRIPED");
                            }
                        }
                        break;
                    }
                }

                bw.write(line);
                bw.newLine();
                bw.flush();
            }
        }
        bw.flush();
        bw.close();
        br.close();
        fw.close();
        fr.close();

    }
}

没有使用dom4j,JDOM等,使用的是流编辑。

时间: 2024-11-08 21:37:10

替换xml中某些特定的elements的相关文章

使用POI替换word中的特定字符/文字改进版

package com.xfzx.test.POI.main; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import jav

linux shell 脚本获取和替换文件中特定内容

1.从一串字符串中获取特定的信息 要求1:获取本机IP:menu.lst为系统镜象的IP配置文件,需要从中获取到本机IP信息(从文件获取信息) 1 timeout 1 2 default 0 3 4 title live 5 find --set-root /casper/vmlinuz 6 kernel /casper/vmlinuz boot=casper ignore_uuid showmounts ip=eth0,10.0.66.66,255.255.240.0,10.0.64.3 7

如何实现自己特定的内存管理,如何正确替换C++中的全局运算符new和delete

在谈下面的问题之前,请先看看写的这篇博客:new operator和operator new之间的区别 考虑下面的代码块,能运行,但是存在一些问题,我们将一一解答: #include <stdio.h> #include <iostream> using namespace std; class A { public: A() { throw exception(""); } void operator delete(void *p, size_t s) { c

Xml中SelectSingleNode方法中的xpath用法

最常见的XML数据类型有:Element, Attribute,Comment, Text. Element, 指形如<Name>Tom<Name>的节点.它可以包括:Element, Text, Comment, ProcessingInstruction, CDATA, and EntityReference. Attribute, 指在<Employee >中的粗体部分. Comment,指形如:<!-- my comment --> 的节点. Tex

c# 操作Xml中SelectSingleNode方法中的xpath用法

常见的XML数据类型有:Element, Attribute,Comment, Text.    Element, 指形如<Name>Tom<Name>的节点.它可以包括:Element, Text, Comment, ProcessingInstruction, CDATA, and EntityReference. Attribute, 指在<Employee >中的粗体部分. Comment,指形如:<!-- my comment --> 的节点. T

web.xml 中的listener、filter、servlet加载及一些配置

在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的,所以自己查找资料总结了下,下面有些是转载其他人的,毕竟人家写的不错,自己也就不重复造轮子了,只是略加点了自己的修饰. 首先可以肯定的是,加载顺序与它们在 web.xml 文件中的先后顺序无关.即不会因为 filter 写在 listener 的前面而会先加载 filter.最终得出的结论是:listener -> filter -> servlet 同时还存在着这样一种配置节:context-param,它用于向 Servlet

Spring之AOP在XML中的配置方法

AOP 即 Aspect Oriental Program 面向切面编程 先来一个栗子: <aop:config> <aop:pointcut id="loggerCutpoint" expression= "execution(* com.how2java.service.ProductService.*(..)) "/> <aop:aspect id="logAspect" ref="loggerAsp

web.xml中常用元素的解读

前言 针对一个项目而言,通常会有几类XML文件需要书写. web.xml spring-context.xml spring-mvc.xml other.xml ... 不管有多少配置文件,可以肯定的一点,这些配置文件,都是在web.xml中被指定的. 后续慢慢阐述. web.xml web.xml可以理解为一个Java Web项目入口.在web.xml中通常会有如下几种类型的节点存在,按照加载顺序排列. Listener 此为监听器,在上面3个中是后弦加载的,表示监听某个动作是否发生,发生后要

(转载)web.xml 中的listener、 filter、servlet 加载顺序及其详解

首先可以肯定的是,加载顺序与它们在 web.xml 文件中的先后顺序无关.  但不会因为 filter 写在 listener 的前面而会先加载 filter.  最终得出的结论是:listener -> filter -> servlet 同时还存在着这样一种配置节:context-param,它用于向 ServletContext 提供键值对,即应用程序上下文信息.我们的 listener, filter 等在初始化时会用到这些上下文中的信息,那么 context-param 配置节是不是