主頁 > 知識庫 > 字符批量替換程序asp服務(wù)器版

字符批量替換程序asp服務(wù)器版

熱門標簽:離線電子地圖標注軟件注冊 寧夏怎么申請400電話 常用地圖標注范圍點 為什么外呼系統(tǒng)需要預(yù)存話費呢 咸陽銷售外呼系統(tǒng) 辦理400電話一年多少錢 蘭州智能語音電銷機器人功能 企數(shù)外呼系統(tǒng)能用多久 外呼回撥系統(tǒng)圖片
**********字符批量替換程序asp服務(wù)器版******************
安裝方法:直接把replace.asp文件放在任意的支持asp+FSO的環(huán)境中
運行方法:用http://localhost/.../replace.asp訪問即可看到程序的效果
此程序的功能主要用來替換文件夾中所有文本文件字符用的。
如:txt、htm、asp、jsp、php、…… 一切的文本文件
div+CSS布局  兼容FF和IE瀏覽器
---------目前具有功能------------------------
即時查看當前替換文件路徑
可選備份原文件為 “原文件.bak”
文件夾無限層嵌套替換字符
被替換文件路徑顯示
總文件數(shù)和被替換過文件數(shù)顯示
...
程序用途舉例-
清除類似的網(wǎng)頁木馬iframe src="" width="0" height="0">/iframe>
批量替換文件字符,少量的文件就用不上這個程序了
可上傳在服務(wù)器上,在線替換批量替換字符
當“查找字符”和“替換的字符串”相同時,可以查找大量文本文件中,哪些文件包含有目標字符
....
155120699原創(chuàng)  歡迎指正    hezhiwu5@163.com    21:47 2007-3-12  
------------------------------------------------------------------------------------------------------
復(fù)制代碼 代碼如下:

%Option Explicit%>
html>
head>
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
meta http-equiv="Content-Language" content="zh-CN" />
meta name="author" content="155120699編寫  hezhiwu5@163.com " />
meta name="Description" content="字符替換程序" />
meta name="copyright" content="155120699原創(chuàng)web程序 歡迎指正"/>
title>字符替換程序asp服務(wù)器版/title>
style type="text/css">
!--
#top
{
    text-align:center;
    margin:auto;
    font-size:11pt;
}

#top_b
{
    text-align:left;
    width:350px;
    border:1px solid #000000;
    margin:auto;
    padding:0px;
    line-height:200%;
}

#top_b div
{
    padding-left:8px;
    padding-right:8px;
}

#ftitle
{
    text-align:center;
    width:350px;
    background:silver;
    font-weight:bold;
    letter-spacing:5px;
    font-size:15pt;
    padding:3px 0 3px 0;
    color:red;
    margin:auto;
    border:1px solid #000000;
    border-width:1px 1px 0 1px;
}

#btm
{
    text-align:center;
    padding-top:8px;
    padding-bottom:8px;
    background:#ececec
}

textarea
{
    width:330;
    height:100px
}

#copyr
{
    font-size:9pt;
    text-align:center;
    color:silver
}
-->
/style>
/head>
body>
%
if request.querystring("add")="yes" then
%>
div id="top">
    div id="ftitle">程序處理結(jié)果/div>
    div id="top_b">
        div>
            總文件:span style="color:red" id="allfile">nbsp;/span>個nbsp;nbsp;
            替換過文件:span style="color:red" id="repfile">nbsp;/span>個
        /div>
        div>br />被替換過文件路徑列表↓textarea id="txtreple" style="overflow:auto">/textarea>/div>
        div id="copyr">br />風云制作nbsp;nbsp;hezhiwu5@163.comnbsp;nbsp;2007-3-12/div>
    /div>
/div>
%
dim oldstr :oldstr=request.form("lookstr")  '源字符串
dim newstr :newstr=request.form("replacestr") '新字符串
dim rep : rep=cbool(request.form("bak"))   '是否備份文件,true為備份文件
dim i : i=0  '總文件個數(shù)
dim j : j=0  '被替換的文件個數(shù)

function chkexistsfile(path) '判斷一個文件是否存在,如果存在,返回true,否則返回false
    dim fso
    set fso=server.createobject("scripting.filesystemobject")
    if fso.fileexists(path) then
        chkexistsfile=true
    else
        chkexistsfile=false
    end if
    set fso=nothing
end function

function getfilecode(path) '獲取一個文件的代碼
    dim fso
    if chkexistsfile(path) then
        set fso=server.createobject("scripting.filesystemobject")
        dim filecode : set filecode=fso.opentextfile(path,1)
        getfilecode=filecode.readall
        set fso=nothing
    else
        getfilecode=path  "不存在該文件"
    end if
end function

sub jstxt(txt) '使用JavaScript
    response.write "script type=""text/JavaScript"" language=""JavaScript"">"
    response.write "!--"chr(13)chr(10)
    response.write txt
    response.write chr(13)chr(10)"http://-->"
    response.write "/script>"
end sub


sub getfolderfile(cpath) '替換某一個(子)文件夾下的所有文件

    response.flush
    dim fso : set fso=server.createobject("scripting.filesystemobject")
    if fso.folderexists(cpath)=false then 
        jstxt("alert("" "replace(cpath,"\","\\")  "不存在該文件夾!"" "") ")
        response.end
    end if
    dim folders : set folders=fso.GetFolder(cpath)
    dim sfile
    for each sfile in folders.files
        dim filecode : filecode=getfilecode(sfile)
        dim filecode_b : filecode_b=filecode
        if instr(filecode,oldstr) > 0 and fso.GetExtensionName(sfile) > "bak" then

            jstxt("document.getElementById(""txtreple"").value+=""" replace(sfile,"\","\\")  "\r\n""" chr(13)chr(10))
            jstxt("window.status=""" replace(sfile,"\","\\")"""")
            jstxt("document.title=""" replace(sfile,"\","\\")"""")

            filecode=replace(filecode,oldstr,newstr)
            dim newfilecode : set newfilecode=fso.opentextfile(sfile,2)
            newfilecode.write filecode
            j=j+1
            if rep then
                dim newfilecode_b : set newfilecode_b=fso.opentextfile(sfile+".bak",2,true)
                newfilecode_b.write filecode_b
            end if
        end if
        i=i+1
        jstxt("document.getElementById(""allfile"").innerHTML="""i"""")
        jstxt("document.getElementById(""repfile"").innerHTML="""j"""")

    next

    dim sfolder
    for each sfolder in folders.subfolders
        getfolderfile(sfolder)
    next
    set fso=nothing


end sub


getfolderfile(trim(request.form("pfolder"))) '調(diào)用程序

else
%>
div id="top">

    form action="?add=yes" method="post" name="strform">

        div id="ftitle">字符批量替換程序/div>
        div id="top_b">

            div>文件夾地址:input type="text" size="25" name="pfolder"/>/div>
            div>備份原文件:input type="checkbox" name="bak" value="true" />/div>
            div>br />查找字符串↓textarea name="lookstr">/textarea>/div>
            div>br />替換查找的字符串↓textarea name="replacestr">/textarea>/div>
            div id="btm">input type="button" value="nbsp;確定nbsp;" onclick="chk()"/>/div>
            div id="copyr">br />風云制作nbsp;nbsp;hezhiwu5@163.comnbsp;nbsp;2007-3-12/div>

        /div>

    /form>
/div>
SCRIPT type="text/javascript" LANGUAGE="JavaScript">
!--
function chk()
{
    var forma=document.strform;
    if(forma.pfolder.value=="")
    {
        alert("文件夾地址不能為空");
        forma.pfolder.focus();
        return;
    }
    else 
    {
        forma.pfolder.value=forma.pfolder.value.replace(/\//g,"\\");
        forma.pfolder.value=forma.pfolder.value.replace(/。/g,".");
    }
    if(forma.lookstr.value=="")
    {
        alert("查找字符串不能為空!");
        forma.lookstr.focus();
    }
    else if(forma.replacestr.value=="")
    {
        alert("替換查找的字符串不能為空");
        forma.replacestr.focus();
    }
    else
    {
        forma.submit();
    }
}
//-->
/SCRIPT>
% end if %>
/body>
/html>
您可能感興趣的文章:
  • asp.net下模態(tài)對話框關(guān)閉之后繼續(xù)執(zhí)行服務(wù)器端代碼的問題
  • asp.net“服務(wù)器應(yīng)用程序不可用” 解決方法
  • Asp.net的服務(wù)器推技術(shù) (Server Push)
  • win2003服務(wù)器asp.net權(quán)限設(shè)置問題及解決方法
  • ASP 時間函數(shù)及如何獲取服務(wù)器時間的寫法
  • IIS7.5顯示ASP的詳細錯誤信息"500 – 內(nèi)部服務(wù)器錯誤解決"
  • win2008 r2 服務(wù)器環(huán)境配置(FTP/ASP/ASP.Net/PHP)
  • win2003+IIS服務(wù)器下運行ASP+ACCESS非常慢的解決方法
  • iis8.5顯示ASP的詳細錯誤信息500 內(nèi)部服務(wù)器錯誤解決方法
  • 推薦4款傻瓜型的ASP服務(wù)器軟件(asp運行環(huán)境一鍵搭建工具)
  • Asp.net獲取服務(wù)器指定文件夾目錄文件并提供下載的方法
  • asp服務(wù)器如何搭建
  • ASP腳本組件實現(xiàn)服務(wù)器重啟

標簽:昌都 泰州 咸陽 鐵嶺 麗江 溫州 昆明 家電維修

巨人網(wǎng)絡(luò)通訊聲明:本文標題《字符批量替換程序asp服務(wù)器版》,本文關(guān)鍵詞  字符,批量,替換,程序,asp,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《字符批量替換程序asp服務(wù)器版》相關(guān)的同類信息!
  • 本頁收集關(guān)于字符批量替換程序asp服務(wù)器版的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章