[회전]Ant 파일 의 문자열 을 바 꿉 니 다.

1557 단어 자바바꾸다ant
  • 특정한 파일 의 문자열 을 교체 합 니 다
  • <replace file ="base/testing.txt" token="Hello" value="Fuck">
    </replace>

    혹시
    <replace file="test.txt"  >
        <replacefilter token="Hello" value="Fuck" />
    </replace>

    설명:token 은 교체 할 태그 입 니 다.value 는 새 값 입 니 다.sha 는 testing.txt 파일 의 Hello 를 Fuck 로 바 꿉 니 다.
  • 특정한 폴 더 에 표 시 된 파일 을 교체 합 니 다
  • <replace dir="temp" token="@CHARSET@" value="${webapp.charset}"/>

    혹시
    <replace dir="temp"》
        <replacefilter token="@CHARSET@" value="${webapp.charset}"/>
    </replace>

    설명:temp 디 렉 터 리 에 있 는 파일 입 니 다.@CHARSET@태그 가 있 으 면${webapp.charset}변수 값 으로 대 체 됩 니 다.
    대량 교체
    <replace dir="dist" includes="${app.project}.jad" encoding="UTF-8">
        <replacefilter token="@NAME @" value="${app.name}"/>
        <replacefilter token="@VENDOR@" value="${app.vendor}"/>
        <replacefilter token="@MIDLET@" value="${app.midlet}"/>
        <replacefilter token="@JAR@" value="${app.project}"/>
        <replacefilter token="@FILESIZE@" value="${size}"/>
        <replacefilter token="@DESCRIPTION@" value="${app.description}"/> <replacefilter token="@PRICE @" value="${app.price}"/>
    </replace>

    좋은 웹페이지 즐겨찾기