asp無組件上傳演算法的改進

來源:互聯網
上載者:User
上傳|演算法|無組件 前幾天幫朋友faintbear修改一個“asp無組件上傳”的代碼,得了幾點心得,寫在此處,或許還有點用處。

我沒有開發過asp程式,只是臨時報佛腳,修改了一下控制語句,所以,這裡不再給出asp代碼,只是說明一下思路。(你最好在看這篇文章前先瀏覽一下faintbear的《asp無組件上傳的原理 (轉) 》這篇文章,重複的部分我不再敘述了)

大體是這樣的,一個form表單中可能post多個文本,居各簡單的例子:
<form method="post" action="upload.asp" enctype="multipart/form-data">
<label>
<input type="file" name="file1" />
</label>
<br />
<input type="text" name="id" value="234523894"/>
<br />
<input type="text" name="name" value="Faint Bear"/>
<br />
<input type="text" name="friend" value="Smile Once"/>
<br />
<input type="submit" value="Submit"/>
<input type="reset" value="Reset"/>
</form>

-----------------------------7d429871607fe
Content-Disposition: form-data; name="file1"; filename="G:\homepage.txt"
Content-Type: text/plain
寶玉:http://www.webuc.net
-----------------------------7d429871607fe
Content-Disposition: form-data; name="id"
234523894
-----------------------------7d429871607fe--
Content-Disposition: form-data; name="name"
Faint Bear
-----------------------------7d429871607fe--
Content-Disposition: form-data; name="friend"
Smile Once
-----------------------------7d429871607fe--

由於file1可能非常大,而諸如id、name、friend這些要提交的域又非常多,而且file1、id、name、friend的相對位置又不確定(原文中是把這些條目的順序寫死的),如何才能更好的劃分流的塊呢?

我的思路是:首先按條目來劃分塊,就是file1、id、name、friend各一塊;之後,如果是file類型的,再根據其大小細分成若干塊。基本上是這樣的結構:
--------------------------
file1 ------------
No.1 block
------------
No.2 block
------------
No. ..... .. block
------------
--------------------------
id
--------------------------
name
--------------------------
friend
--------------------------

這樣就井然有序,既確保的結構的清晰,又解決的大檔案上傳的問題。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.