asp 调用java文件上传_用asp实现文件浏览、上传、下载的程序

可以放在服务器上,对服务器上的文件进行浏览、上传、下载,可下载文件源码。

把下所有代码入在一个文件里即可,文件的后缀要为asp。

thedir = request("thedir")

if thedir = "" then

folderini = server.mappath(".")&"\"

else

folderini = server.mappath(thedir)&"\"

end if

foldinfo=trim(Request.Querystring("foldinfo"))

if foldinfo = "" then

foldinfo = folderini

end if

class clsUp

Dim Form,File

Dim AllowExt_

Dim NoAllowExt_

Private oUpFileStream

Private isErr_

Private ErrMessage_

Private isGetData_

Public Property Get Version

Version="v1.0.0"

End Property

Public Property Get isErr

isErr=isErr_

End Property

Public Property Get ErrMessage

ErrMessage=ErrMessage_

End Property

Public Property Get AllowExt

AllowExt=AllowExt_

End Property

Public Property Let AllowExt(Value)

AllowExt_=LCase(Value)

End Property

Public Property Get NoAllowExt

NoAllowExt=NoAllowExt_

End Property

Public Property Let NoAllowExt(Value)

NoAllowExt_=LCase(Value)

End Property

Private Sub Class_Initialize

isErr_ = 0

NoAllowExt=""

NoAllowExt=LCase(NoAllowExt)

AllowExt=""

AllowExt=LCase(AllowExt)

isGetData_=false

End Sub

Private Sub Class_Terminate

on error Resume Next

Form.RemoveAll

Set Form = Nothing

File.RemoveAll

Set File = Nothing

oUpFileStream.Close

Set oUpFileStream = Nothing

End Sub

Public Sub GetData (MaxSize)

on error Resume Next

if isGetData_=false then

Dim getupdata1,sSpace,bCrLf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,oFileInfo

Dim sFormValue,sFileName

Dim iFindStart,iFindEnd

Dim iFormStart,iFormEnd,sFormName

If Request.TotalBytes 

isErr_ = 1

ErrMessage_=""

Exit Sub

End If

If MaxSize > 0 Then

If Request.TotalBytes > MaxSize Then

isErr_ = 2

ErrMessage_=""

Exit Sub

End If

End If

Set Form = Server.CreateObject ("Scripting.Dictionary")

Form.CompareMode = 1

Set File = Server.CreateObject ("Scripting.Dictionary")

File.CompareMode = 1

Set tStream = Server.CreateObject ("ADODB.Stream")

Set oUpFileStream = Server.CreateObject ("ADODB.Stream")

oUpFileStream.Type = 1

oUpFileStream.Mode = 3

oUpFileStream.Open

oUpFileStream.Write Request.BinaryRead (Request.TotalBytes)

oUpFileStream.Position = 0

getupdata1 = oUpFileStream.Read

iFormEnd = oUpFileStream.Size

bCrLf = ChrB (13) & ChrB (10)

sSpace = MidB (getupdata1,1, InStrB (1,getupdata1,bCrLf)-1)

iStart = LenB(sSpace)

iFormStart = iStart+2

Do

iInfoEnd = InStrB (iFormStart,getupdata1,bCrLf & bCrLf)+3

tStream.Type = 1

tStream.Mode = 3

tStream.Open

oUpFileStream.Position = iFormStart

oUpFileStream.CopyTo tStream,iInfoEnd-iFormStart

tStream.Position = 0

tStream.Type = 2

tStream.CharSet = "gb2312"

sInfo = tStream.ReadText

iFormStart = InStrB (iInfoEnd,getupdata1,sSpace)-1

iFindStart = InStr (22,sInfo,"name=""",1)+6

iFindEnd = InStr (iFindStart,sInfo,"""",1)

sFormName = Mid (sinfo,iFindStart,iFindEnd-iFindStart)

If InStr (45,sInfo,"filename=""",1) > 0 Then

Set oFileInfo = new clsFileInfo

iFindStart = InStr (iFindEnd,sInfo,"filename=""",1)+10

iFindEnd = InStr (iFindStart,sInfo,""""&vbCrLf,1)

sFileName = Mid (sinfo,iFindStart,iFindEnd-iFindStart)

oFileInfo.FileName = GetFileName(sFileName)

oFileInfo.FilePath = GetFilePath(sFileName)

oFileInfo.FileExt = GetFileExt(sFileName)

iFindStart = InStr (iFindEnd,sInfo,"Content-Type: ",1)+14

iFindEnd = InStr (iFindStart,sInfo,vbCr)

oFileInfo.FileMIME = Mid(sinfo,iFindStart,iFindEnd-iFindStart)

oFileInfo.FileStart = iInfoEnd

oFileInfo.FileSize = iFormStart -iInfoEnd -2

oFileInfo.FormName = sFormName

file.add sFormName,oFileInfo

else

tStream.Close

tStream.Type = 1

tStream.Mode = 3

tStream.Open

oUpFileStream.Position = iInfoEnd

oUpFileStream.CopyTo tStream,iFormStart-iInfoEnd-2

tStream.Position = 0

tStream.Type = 2

tStream.CharSet = "gb2312"

sFormValue = tStream.ReadText

If Form.Exists (sFormName) Then

Form (sFormName) = Form (sFormName) & ", " & sFormValue

else

Form.Add sFormName,sFormValue

End If

End If

tStream.Close

iFormStart = iFormStart+iStart+2

Loop Until (iFormStart+2) >= iFormEnd

getupdata1 = ""

Set tStream = Nothing

isGetData_=true

end if

End Sub

Public Function SaveToFile(Item,Path)

SaveToFile=SaveToFileEx(Item,Path,True)

End Function

Public Function AutoSave(Item,Path)

AutoSave=SaveToFileEx(Item,Path,false)

End Function

Private Function SaveToFileEx(Item,Path,Over)

On Error Resume Next

Dim oFileStream

Dim tmpPath

Dim nohack

isErr=0

Set oFileStream = CreateObject ("ADODB.Stream")

oFileStream.Type = 1

oFileStream.Mode = 3

oFileStream.Open

oUpFileStream.Position = File(Item).FileStart

oUpFileStream.CopyTo oFileStream,File(Item).FileSize

nohack=split(path,".")

tmpPath=nohack(0)&"."&nohack(ubound(nohack))

if Over then

if isAllowExt(GetFileExt(tmpPath)) then

oFileStream.SaveToFile tmpPath,2

Else

isErr_=3

ErrMessage_="!"

End if

Else

Path=GetFilePath(Path)

if isAllowExt(File(Item).FileExt) then

do

Err.Clear()

nohack=split(Path&GetNewFileName()&"."&File(Item).FileExt,".")

tmpPath=nohack(0)&"."&nohack(ubound(nohack))

oFileStream.SaveToFile tmpPath

loop Until Err.number<1

oFileStream.SaveToFile Path

Else

isErr_=3

ErrMessage_="该后缀名的文件不允许上传!"

End if

End if

oFileStream.Close

Set oFileStream = Nothing

if isErr_=3 then SaveToFileEx="" else SaveToFileEx=GetFileName(tmpPath)

End Function

'取得文件数据

Public Function FileData(Item)

isErr_=0

if isAllowExt(File(Item).FileExt) then

oUpFileStream.Position = File(Item).FileStart

FileData = oUpFileStream.Read (File(Item).FileSize)

Else

isErr_=3

ErrMessage_=""

FileData=""

End if

End Function

Public function GetFilePath(FullPath)

If FullPath <> "" Then

GetFilePath = Left(FullPath,InStrRev(FullPath, "\"))

Else

GetFilePath = ""

End If

End function

Public Function GetFileName(FullPath)

If FullPath <> "" Then

GetFileName = mid(FullPath,InStrRev(FullPath, "\")+1)

Else

GetFileName = ""

End If

End function

Public Function GetFileExt(FullPath)

If FullPath <> "" Then

GetFileExt = LCase(Mid(FullPath,InStrRev(FullPath, ".")+1))

Else

GetFileExt = ""

End If

End function

Public Function GetNewFileName()

dim ranNum

dim dtNow

dtNow=Now()

ranNum=int(90000*rnd)+10000

GetNewFileName=year(dtNow) & right("0" & month(dtNow),2) & right("0" & day(dtNow),2) & right("0" & hour(dtNow),2) & right("0" & minute(dtNow),2) & right("0" & second(dtNow),2) & ranNum

End Function

Public Function isAllowExt(Ext)

if NoAllowExt="" then

isAllowExt=cbool(InStr(1,";"&AllowExt&";",LCase(";"&Ext&";")))

else

isAllowExt=not CBool(InStr(1,";"&NoAllowExt&";",LCase(";"&Ext&";")))

end if

End Function

End Class

Class clsFileInfo

Dim FormName,FileName,FilePath,FileSize,FileMIME,FileStart,FileExt

End Class

%>

function deletefile(filename)

set objfilesys=server.createobject("scripting.filesystemobject")

ss=filename

ss=foldinfo&ss

if objfilesys.FILEExists(ss) then

objfilesys.deleteFILE ss

end if

end function

function deletedir(dirname)

set objfilesys=server.createobject("scripting.filesystemobject")

ss=dirname&idd

ss=server.mappath(ss)

if objfilesys.FOLDERExists(ss) then

objfilesys.deleteFOLDER ss

end if

end function

function download(filename)

Response.Buffer = true

Response.Clear

dim  url

Dim  fso,fl,flsize

dim  Dname

Dim  objStream,ContentType,flName,isre,url1

Dname=filename

If  Dname<>""  Then

url=foldinfo&Dname

End  If

Set fso=Server.CreateObject("Scripting.FileSystemObject")

Set fl=fso.getfile(url)

flsize=fl.size

flName=fl.name

Set fl=Nothing

Set fso=Nothing

Set objStream=Server.CreateObject("ADODB.Stream")

objStream.Open

objStream.Type=1

objStream.LoadFromFile url

ContentType="text/html"

Response.AddHeader  "Content-Disposition","attachment;filename="&flName

Response.AddHeader  "Content-Length",  flsize

Response.Charset  =  "UTF-8"

Response.ContentType  =  ContentType

Response.BinaryWrite  objStream.Read

Response.Flush

response.Clear()

objStream.Close

Set objStream = Nothing

end function

function uploadfiles()

filepath=foldinfo

set upload=new clsUp

upload.NoAllowExt="aep"

upload.GetData (3072000)

if upload.form("act")="uploadfile" then

for each formName in upload.File

set file=upload.File(formName)

randomize

filename1=file.FileName

filename=filepath&filename1

if file.FileSize>0 then

upload.SaveToFile formName,FileName

end if

set file=nothing

next

set upload=nothing

end if

end function

action = request("action")

if action = "deletefile" then

filename = request("filename")

deletefile(filename)

end if

if action = "deletedir" then

deletedirname = request("deletedir")

deletedir(deletedirname)

end if

if action = "download" then

filename = request("filename")

download(filename)

end if

if action = "uploadfiles" then

uploadfiles()

end if

%>

当前目录:&action=uploadfiles" enctype="multipart/form-data">

FolderSizeLastTimeOperate

upfolder=left(foldinfo,len(foldinfo)-1)

upfolder=left(upfolder,InstrRev(upfolder, "\"))

if foldinfo<>folderini then

response.write("Go Back")

else

response.write("Go Back")

end if%>

FileSizeLastTimeOperate
 

Sub ShowFolderList(folderspec)

Dim fs, f, f1, fc, s, schild,p,fsize

Set fs = CreateObject("scripting.FileSystemObject")

Set f = fs.GetFolder(folderspec)

Set fc = f.SubFolders

For Each f1 in fc

s = f1.name

's = s &  vbCrLf

p = f1.DateLastModified

fsize = f1.Size

schild=folderspec&s&"\"

Response.write("

Response.write("

")

Response.write("

0"&s&"")

Response.write("

"&fsize&"")

Response.write("

"&p&"")

Response.write("

")

Response.write("DEL")

Response.write("

")

Response.write("

")

Response.write("

")

Next

End Sub

Sub showfolderinfo(folderspc)

set MyFileObject=Server.CreateObject("scripting.FileSystemObject")

Set MyFolder=MyFileObject.GetFolder(folderspc)

for each thing in MyFolder.Files

Set afile=MyFileObject.GetFile(thing)

filenamecode=afile.name

filedetail=folderspc+filenamecode

filedetail=replace(filedetail,"\","*s_p_l_i_t*")

filesize=afile.size

lastmodify=afile.DateLastModified

Response.write("

Response.write("

")

Response.write("

2"&filenamecode&"")

Response.write("

"&filesize&"")

Response.write("

"&lastmodify&"")

Response.write("

")

Response.write("DEL ")

Response.write("DL")

Response.write("

")

Response.write("

")

Response.write("

")

Next

End sub

%>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/438572.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第十四节:Lambda、linq、SQL的相爱相杀(3)

一. SQL 开篇 1. where用法 1    #region 封装EF调用SQL语句查询 2 public static List<T> ExecuteQuery<T>(string sql, params SqlParameter[] pars) 3 { 4 return db.Database.SqlQuery<T>(sql, pars).ToList(); 5 …

hive mysql windows_Java-从MySQL到Hive导入,其中MySQL在Windows上运行,而Hive在Cent OS上运行(Horton Sandbox)...

在任何答案和评论之前.我尝试了在Stackoverflow中找到的几个选项,但均以失败告终.以下是这些链接-我通过命令行在Horton Sandbox中进行了尝试并成功.sqoop import --connect jdbc:mysql://192.168.56.101:3316/database_name --usernameuser --passwordpwd --table table_name …

第十五节:Expression表达式目录树(与委托的区别、自行拼接、总结几类实例间的拷贝)

一. 基本介绍 回忆&#xff1a; 最早接触到表达式目录树(Expression)可能要追溯到几年前使用EF早期的时候&#xff0c;发现where方法里的参数是Expression<Func<T,bool>>这么一个类型&#xff0c;当初不是很理解&#xff0c;只是知道传入lambda表达式使用即可&…

Php7 mongodb explain,【代码片-1】 php7 mongoDB 简单封装

/*** mongoDB 简单 封装* 注意&#xff1a;支持 mongoDB 3.2** author color_wind*/finalclassm_mgdb {privatestatic$ins [];privatestatic$def"default";private$_conn null;private$_db null;privatestatic$_config ["default"> ["url">…

IIS Web 服务器/ASP.NET 运行原理基本知识概念整理

前言&#xff1a; 记录 IIS 相关的笔记还是从公司笔试考核题开始的&#xff0c;问 Application Pool 与 AppDomain 的区别&#xff1f; 促使我对进程池进了知识的学习&#xff0c;所以记录一下学习的笔记。 我们知道现在 .NET 就业来看&#xff0c;80% 的 .NET 程序员都是从事 …

java正则表达式 ascii,是否可以检查字符串是否在Java中仅包含ASCII?

使用正则表达式您可以使用以下正则表达式查找特定的String值是否包含ASCII字符-\\A\\p{ASCII}*\\zString类的matches()方法接受正则表达式&#xff0c;并验证当前字符串是否与给定表达式匹配(如果匹配)&#xff0c;则返回true&#xff0c;否则返回false。因此&#xff0c;通过将…

Http请求处理流程

从一个页面比如www.xuxiaoyu.net的请求开始如何就能打开blogs页面的呢&#xff1f;这其中发生了什么样的东西&#xff1f; Http请求(Http Request) 当服务器&#xff08;IIS&#xff09;接受到一个Http请求的时候进行以下步骤的处理&#xff1a; 1)服务器获取所请求的页面的后缀…

matlab 基金业绩归因,基金专题报告:基于净值和持仓的基金业绩归因方法研究...

核心观点&#xff1a;当前主流的基金业绩归因方法主要有两个方向&#xff1a;一是基于净值数据的时间序列回归方法&#xff0c;所需数据较少且操作简单&#xff0c;主要通过基金历史收益率与风险溢价因子收益率进行回归来分析&#xff0c;二是基于持仓数据的归因方法&#xff0…

iis到w3wp的数据流及工作原理

HTTP.sys->IO线程-CLR线程池中的worker线程处理 IO线程只负责把请求交给Worker线程或者放入进程池级别的队列,然后又去HTTP.SYS的队列中处理其它的请求

php跨域session共享,PHP中利用COOKIE与SESSION联合实现SESSION跨域

大家都知道在一般情况下,一个网站只有一个域名,www.demo.com,但是也有些网站架构是由多个子域名组建的.所以就需要SESSION可以跨子域被 访问到,这样才可以实现用户的跨域登录.就是说客户在A下登录的,同样B也同时登录了,不需要用户再次登录,同时也实现了参数的跨域传递.当然不可…

关于w3wp.exe

一. IIS各版本间的区别 IIS 5.0 IIS 5.1 IIS 6.0 平台 Windows 2000 Windows XP Professional Windows Server 2003 家族 体系结构 32 位 32 位和 64 位 32 位和 64 位 应用程序进程模型 TCP/IP 内核 DLLhost.exe&#xff08;处于中等或高应用程序隔离模式下的多个…

php云解析播放器,xyplay云解析PHPV3.4.1优化稳定版视频解析

演示地址&#xff1a;如有演示站请以演示为准&#xff0c;无演示站以截图为准,源码太多服务器有限&#xff0c;无法搭建所有源码演示站&#xff0c;请谅解&#xff01;新手购买指导&#xff1a;1.在本站注册账号 丨 2.登录已注册账号充值源码所需金币 丨 3.登录账号下载所需源码…

php version.,PHP_VERSION指什么

PHP_VERSION (string)当前的PHP版本&#xff0c;以字符串形式“ major.minor.release [extra]”表示。 (推荐学习&#xff1a;PHP视频教程)例如&#xff1a;<?php // PHP_VERSION_ID 自 PHP 5.2.7 起有效&#xff0c;// 如果我们的版本低于该版本&#xff0c;则用以下代码来…

C# async 和 await 理解

先假设如下场景&#xff1a; 主函数 Main&#xff0c;循环等待用户输入&#xff1b; 计算函数 Cal&#xff0c;耗时计算大量数据&#xff1b; class Test {static int Main(string[] args){while(true){// 等待用户输入}}public static int Cal() {int sum 0;for (int i …

php进阶面向对象及tp5,TP5实战技巧---开发思路 引路造桥

## TP5实战技巧实例---开发思路> 子曰&#xff1a;“学而不思则罔&#xff0c;思而不学则殆。”[TOC]### 利用TP的MVC框架 做快速开发>[success] 写在前面的话:既然选择TP5框架,我推荐大家要通读完全开发手册,我这里并不是要大家记住每一个方法,每一个细节.而是要求大家心…

C# 彻底搞懂async/await

前言 Talk is cheap, Show you the code first&#xff01; private void button1_Click(object sender, EventArgs e) {Console.WriteLine("111 balabala. My Thread ID is :" Thread.CurrentThread.ManagedThreadId);AsyncMethod();Console.WriteLine("222 …

matlab平滑窗滤波,matlab实现平滑滤波

clc;clear;close all;imimread(‘p1.jpg‘);im rgb2gray(im);imdouble(im);imim/max(im(??);figure(‘Name‘,‘原图‘,‘NumberTitle‘,‘off‘);imshow(im,[0,1]);P1 imnoise(im,‘gaussian‘,0,0.005); % adding gaussian noise 这里im是原始图像&#xff0c;添加了均值…

c#之task与thread区别及其使用

1.什么是thread 当我们提及多线程的时候会想到thread和threadpool&#xff0c;这都是异步操作&#xff0c;threadpool其实就是thread的集合&#xff0c;具有很多优势&#xff0c;不过在任务多的时候全局队列会存在竞争而消耗资源。thread默认为前台线程&#xff0c;主程序必须等…

java内存分配和垃圾回收,Java内存分配与垃圾回收

1.JVM管理的内存包含下图所示的几个运行时数据区域&#xff0c;其中方法区和堆为线程共享的数据区域&#xff0c;程序计数器&#xff0c;虚拟机栈以及本地方法栈为线程私有的数据区域。程序计数器&#xff1a;可以看做是当前线程所执行的字节码的行号指示器&#xff0c;告诉字节…

谈谈你对闭包的理解?

闭包这个概念好难理解&#xff0c;身边朋友们好多都稀里糊涂的&#xff0c;稀里糊涂的林老冷希望写下这篇文章能够对稀里糊涂的伙伴们有一些帮助~ 请大家跟我理解一下&#xff0c;如果在一个函数的内部定义了另一个函数&#xff0c;外部的我们叫他外函数&#xff0c;内部的我们…