當前位置:首頁 » 文件傳輸 » 文件上傳路徑跟蹤
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

文件上傳路徑跟蹤

發布時間: 2023-04-16 07:49:07

『壹』 MultipartFile.transferTo(targetFile)

時間:2020.12.4

異常:java.io.FileNotFoundException: /home/jdp/apache-tomcat-8.5.54-8-group/apache-tomcat-8.5.54-80 /work/Catalina/localhost/ROOT/upload_cda0de04_fa66_4589_8170_5cb0cb7f8152_00000005.tmp

初步判斷:文件上傳路徑問題,但是項目路徑中並未配置這個路徑,後面了解到 /work 是tomcat 編譯文件的臨時路徑,聯想到 /work 之後的文件可能是上傳的臨時文件路局侍徑,而前面的路徑是tomcat的絕對路徑

探索1:項目配置的文件路徑為/home/temp, 可能是因為tomcat的臨時文件路徑和我們上傳的臨時文件路徑不匹配導致的

嘗試1:設置tomcat 臨時文件路徑 在 application.properites 中配置 增加配置 server.tomcat.basedir=/home/temp

結果1:未解決,報錯不變

探索2:查閱資料得知 MultipartFile.transferTo(targetFile) 方法是面向絕對路徑的,如果入參是一個相對路徑,則會在路徑之前加上 一個系統絕對路徑(比較符合我們的情況)

嘗試2:根據文章所述:增咐臘余加配置類 指定臨時文件的路徑

@Configuration

public class FileUploadConfig {



    @Value("${file.temp.root}")

    private String FILE_TEMP_ROOT;



    /**

    * 文件上傳配置

    *

    * @return MultipartConfigElement

    */

    @Bean

    public MultipartConfigElement multipartConfigElement(

            @Value("${multipart.maxFileSize}") String maxFileSize,

            @Value("${multipart.maxRequestSize}") String maxRequestSize) {

        MultipartConfigFactory factory = new MultipartConfigFactory();

        // 單個文件最大

        factory.setMaxFileSize(maxFileSize);

        // 設置總上傳數據總大小

        factory.setMaxRequestSize(maxRequestSize);

        //上傳臨時路徑

        File file = new File(FILE_TEMP_ROOT);

        if (!file.exists()) {

            file.mkdirs();

        }

        factory.setLocation(FILE_TEMP_ROOT);

        return factory.createMultipartConfig();

    }

}

結果2:報錯發生變化,變成了我們的指定的路徑加上 臨時文件名,但是依舊未能解決問題

java.io.FileNotFoundException: /home/temp/upload_a8eb4246_470f_4f73_81af_891f1ad6651b_00000002.tmp

轉換思路:既然是transferTo()方法的問題,換一個方法

探索3:更換transferTo()方法衡滾,使用 FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);方法

嘗試3:尋找方法中包涵的transfTo()方法,替換成FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);

結果3:問題解決

總結:transferTo()在windows 系統上並沒有這個問題,在Linux上出現了這個問題,網上的資料各有說法,目前未找到真正的原因。為了避免這個問題,統一使用FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);方法來復制文件。

『貳』 查看上傳文件的路徑

您好!
一般伺服器為了安全,是不可能顯示絕對路徑的,要顯示了,那黑客還不把伺服器給黑了,呵呵~~~~
一句話:找不到的!

-----------------全心全意為人民服務!---------------

如果我的答案對您有幫助,那麼我倍感欣慰,您的支持就是我前進的動力!
如果我的答案不夠清楚、詳細,那麼我會繼續努力做的更好!

『叄』 C#後台怎麼獲取前台文件上傳的路徑

最好的方法是用JQuery的AJAX傳!!或者用一般處理程序,你自己看看,很簡單的!

『肆』 asp怎樣上傳文件到指定的文件夾,並在access中記錄路徑

上傳文件頁 index.asp 開始
-----------------------------
index.asp 代碼如下
<SCRIPT language=JavaScript type=text/javascript>
function a(htmlurl) {
var win = window.open(htmlurl,"newwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=300,height=10,left=380,top=380");
}
</SCRIPT>
<form name="zc" action="index.asp" method="post">
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<tr>
<td height="30" align="right" style="color:#666">汽車照片:</td>
<td><input type="text" name="qczp" class="zc_input" maxlength="100" value="<%=session("qczp")%>" readonly></td>
<td bgcolor="#E7F8F8" style="color:#666"><input type="button" value="上傳圖片" onClick="a('uploadprod.asp');" name="button" style="color:#666; width:60px; height:20px;"></td>
</tr>
</form>
</table>
上傳文件頁 index.asp 結束
-----------------------------

uploadprod.asp 選擇滑頌辯圖片上傳 開始
-----------------------------
uploadprod.asp 代碼如下

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"櫻滑 content="text/html; charset=gb2312" />
<title>上傳圖片</title>
<link href="../images/cnge_wy.css"信缺 rel="stylesheet" type="text/css" />
<script>
function check()
{
var mf=document.up;
if (mf.image.value.length<4)
{
alert("請選擇需要上傳的圖片.");
mf.image.focus();
return false;
}
return true;
}
</script>
<script language="JavaScript">
if (window.Event)
document.captureEvents(Event.MOUSEUP);

function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;

return false;
}

function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}

}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
</script>
</head>

<body onselectstart="return false" on="return false" oncut="return false" onpaste="return false" oncontextmenu="return false">
<%
response.buffer=true
const page_level=1
%>
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td colspan="2" align="center" height="25" style="font-weight:bold;">上傳圖片</td>
</tr>
<form name="up" method="post" action="uploadprod2.asp" enctype="multipart/form-data" onsubmit='return check();'>
<tr>
<td width="50%" align="right" height="25">選擇圖片:</td>
<td width="50%"><input type="file" name="image" style="border:1px solid #cdcdcd;"></td>
</tr>
<tr>
<td colspan="2" height="25" align="center"><input type="submit" value="提 交" name="Submit" style="width:45px; height:18px; border:1px solid #cdcdcd; color:#666; background-color:#FFFFFF;">
<input type="reset" value="重 置" style="width:45px; height:18px; border:1px solid #cdcdcd; color:#666; background-color:#FFFFFF;"></td>
</tr>
</form>
</table>
</body>
</html>

上傳文件頁 uploadprod.asp 結束
-----------------------------

判斷文件以及文件是否存在則上傳 uploadprod2.asp 開始
-----------------------------
uploadprod2.asp 源代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>圖片上傳</title>
<link href="../images/cnge_wy.css" rel="stylesheet" type="text/css" />
<script language="JavaScript">
if (window.Event)
document.captureEvents(Event.MOUSEUP);

function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;

return false;
}

function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}

}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
</script>
</head>

<body onselectstart="return false" on="return false" oncut="return false" onpaste="return false" oncontextmenu="return false">
<% response.buffer=true
session("path1")=""
const page_level=1
%>
<!--#include file=zupload.asp-->
<%
AllowFileExtStr = "jpg,gif,png,bmp"
dim ID
dim upload,path,file1,filename1
set upload=new upload_5xSoft'建立上傳對象
'圖片上傳
formPath="../Carpic/"'上傳圖片目錄
'開始上傳圖片
set file1=upload.file("image")
filename1=year(now())&"-"&month(now())&"-"&day(now())&"_"&hour(now())&"-"&Minute(now())&"-"&Second(now()) & right(file1.FileName,4)
if file1.FileSize>0 then'如果 FileSize > 0 說明有文件數據
FileExtName=mid (file1.FileName,InStrRev (file1.FileName, ".")+1)
if CheckFileType(AllowFileExtStr,FileExtName) = False then
response.Write file1.FileName & "<br><font color=red>文件:不允許上傳!<br>上傳文件類型有:" & AllowFileExtStr &"</font>"
response.Write "<br>"
response.Write "你的IP:"&Replace(Request.ServerVariables("REMOTE_ADDR"),"'","")&""
response.Write "<br>"
response.write "你的操作已被系統所記錄!"
response.End()
end if

file1.SaveAs Server.mappath(formPath&filename1)'保存文件
'上傳圖片成功
path1= "/Carpic/"&filename1
else
response.write "請選擇要插入的圖片文件"
end if
session("qczp")=path1
%>
<p>圖片上傳成功.
<script language=javascript>
alert("圖片上傳成功!");
opener.document.zc.qczp.value="<%=path1%>";
window.close();
</script>
<%set file1=nothing

Function CheckFileType(AllowExtStr,FileExtName)
Dim i,AllowArray
AllowArray = Split(AllowExtStr,",")
FileExtName = LCase(FileExtName)
CheckFileType = False
For i = LBound(AllowArray) to UBound(AllowArray)
if LCase(AllowArray(i)) = LCase(FileExtName) then
CheckFileType = True
end if
Next
if FileExtName="asp" or FileExtName="asa" or FileExtName="aspx" or FileExtName="php" or FileExtName="php3" or FileExtName="php4" or FileExtName="php5" or FileExtName="exe" then
CheckFileType = False
end if
End Function

%>

%>
</body>
</html>

判斷文件以及文件是否存在則上傳 uploadprod2.asp 結束
-----------------------------

另外需要一個 上傳組件 文件為 zupload.asp 開始
-----------------------------

代碼如下

<SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT>
dim Data_5xsoft

Class upload_5xsoft

dim objForm,objFile,Version

Public function Form(strForm)
strForm=lcase(strForm)
if not objForm.exists(strForm) then
Form=""
else
Form=objForm(strForm)
end if
end function

Public function File(strFile)
strFile=lcase(strFile)
if not objFile.exists(strFile) then
set File=new FileInfo
else
set File=objFile(strFile)
end if
end function

Private Sub Class_Initialize
dim RequestData,sStart,vbCrlf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,theFile
dim iFileSize,sFilePath,sFileType,sFormValue,sFileName
dim iFindStart,iFindEnd
dim iFormStart,iFormEnd,sFormName
Version="上傳程序 Version 2.0"
set objForm=Server.CreateObject("Scripting.Dictionary")
set objFile=Server.CreateObject("Scripting.Dictionary")
if Request.TotalBytes<1 then Exit Sub
set tStream = Server.CreateObject("adodb.stream")
set Data_5xsoft = Server.CreateObject("adodb.stream")
Data_5xsoft.Type = 1
Data_5xsoft.Mode =3
Data_5xsoft.Open
Data_5xsoft.Write Request.BinaryRead(Request.TotalBytes)
Data_5xsoft.Position=0
RequestData =Data_5xsoft.Read

iFormStart = 1
iFormEnd = LenB(RequestData)
vbCrlf = chrB(13) & chrB(10)
sStart = MidB(RequestData,1, InStrB(iFormStart,RequestData,vbCrlf)-1)
iStart = LenB (sStart)
iFormStart=iFormStart+iStart+1
while (iFormStart + 10) < iFormEnd
iInfoEnd = InStrB(iFormStart,RequestData,vbCrlf & vbCrlf)+3
tStream.Type = 1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iFormStart
Data_5xsoft.CopyTo tStream,iInfoEnd-iFormStart
tStream.Position = 0
tStream.Type = 2
tStream.Charset ="gb2312"
sInfo = tStream.ReadText
tStream.Close
'取得表單項目名稱
iFormStart = InStrB(iInfoEnd,RequestData,sStart)
iFindStart = InStr(22,sInfo,"name=""",1)+6
iFindEnd = InStr(iFindStart,sInfo,"""",1)
sFormName = lcase(Mid (sinfo,iFindStart,iFindEnd-iFindStart))
'如果是文件
if InStr (45,sInfo,"filename=""",1) > 0 then
set theFile=new FileInfo
'取得文件名
iFindStart = InStr(iFindEnd,sInfo,"filename=""",1)+10
iFindEnd = InStr(iFindStart,sInfo,"""",1)
sFileName = Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileName=getFileName(sFileName)
theFile.FilePath=getFilePath(sFileName)
'取得文件類型
iFindStart = InStr(iFindEnd,sInfo,"Content-Type: ",1)+14
iFindEnd = InStr(iFindStart,sInfo,vbCr)
theFile.FileType =Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileStart =iInfoEnd
theFile.FileSize = iFormStart -iInfoEnd -3
theFile.FormName=sFormName
if not objFile.Exists(sFormName) then
objFile.add sFormName,theFile
end if
else
'如果是表單項目
tStream.Type =1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iInfoEnd
Data_5xsoft.CopyTo tStream,iFormStart-iInfoEnd-3
tStream.Position = 0
tStream.Type = 2
tStream.Charset ="gb2312"
sFormValue = tStream.ReadText
tStream.Close
if objForm.Exists(sFormName) then
objForm(sFormName)=objForm(sFormName)&", "&sFormValue
else
objForm.Add sFormName,sFormValue
end if
end if
iFormStart=iFormStart+iStart+1
wend
RequestData=""
set tStream =nothing
End Sub

Private Sub Class_Terminate
if Request.TotalBytes>0 then
objForm.RemoveAll
objFile.RemoveAll
set objForm=nothing
set objFile=nothing
Data_5xsoft.Close
set Data_5xsoft =nothing
end if
End Sub

Private function GetFilePath(FullPath)
If FullPath <> "" Then
GetFilePath = left(FullPath,InStrRev(FullPath, "\"))
Else
GetFilePath = ""
End If
End function

Private function GetFileName(FullPath)
If FullPath <> "" Then
GetFileName = mid(FullPath,InStrRev(FullPath, "\")+1)
Else
GetFileName = ""
End If
End function
End Class

Class FileInfo
dim FormName,FileName,FilePath,FileSize,FileType,FileStart
Private Sub Class_Initialize
FileName = ""
FilePath = ""
FileSize = 0
FileStart= 0
FormName = ""
FileType = ""
End Sub

Public function SaveAs(FullPath)
dim dr,ErrorChar,i
SaveAs=true
if trim(fullpath)="" or FileStart=0 or FileName="" or right(fullpath,1)="/" then exit function
set dr=CreateObject("Adodb.Stream")
dr.Mode=3
dr.Type=1
dr.Open
Data_5xsoft.position=FileStart
Data_5xsoft.to dr,FileSize
dr.SaveToFile FullPath,2
dr.Close
set dr=nothing
SaveAs=false
end function
End Class
</SCRIPT>

另外需要一個 上傳組件 文件為 zupload.asp 結束
-----------------------------

另需要建立一個文件夾來 存放文件
我是用的 formPath="../Carpic/"'上傳圖片目錄

也就是說本程序的上面一個文件夾為 Carpic

-----------------------------------------------------------------

全部完成,絕對能行。。。。。。

『伍』 asp上傳後怎麼得到文件路徑

通常我們用iframe來放冊檔置上傳組件,然棚攔後在上傳完成後,把文件名傳回來
parent.document.getElementById("要顯示的控制項").value=文鏈姿胡件名

『陸』 php的圖片上傳程序 判斷文件類型 並獲取上傳以後文件的路徑 我在網上找的程序是可以提取文件的 求達人修改

你找到這一句,改一下:

改動前:$name1=$name.".file";

改動後:$name1=$name;

如果弊燃不行,你再補充問題,希望能對你有幫賀卜腔助

回報就不用了禪衫

『柒』 有過上傳文件經驗的高手,幫一下啊,如何取得上傳文件的路徑

先拖一個HTML控制項file field 設置其id為SelectFile並設置其language=c#,runat=server,再在你該程序下目錄下新建一個document文件夾,忘記了是不是還需要設置下該文件夾的許可權(添加一個every one用戶賦予全部許可權)
然後再如寫代碼:

string selectfile="";

string file=SelectFile.PostedFile.FileName.ToString().Trim();
if (!file.Equals(""))
{
string path=Server.MapPath(".");
string fileName = System.IO.Path.GetFileName( SelectFile.PostedFile.FileName );
path += "\\document\\";
selectfile = System.IO.Path.Combine(path,fileName);
SelectFile.PostedFile.SaveAs( selectfile);
Page.RegisterStartupScript("sb1", "<script language=javascript>alert('上傳成功!');</script>");//此時你去看document文件夾下已經有你上傳的文件了

}

『捌』 asp.net網站發布後,上傳文件時,而會出現路徑在伺服器中查找的問題,怎樣解決

在ASP.NET中。當一個網站發布出去後,你在另一台機器上訪問,利用文件上傳控制項上傳一個文件時,網站會在你伺服器電腦中找你上傳的文件路徑。就會出現找不到文件的錯誤。你們有遇到過嗎? 請教! 補充: 我的截圖上就可以看出來啊!伺服器上肯定不存在啊。我是想怎麼解決啊。 我網站發布到伺服器,是在另台機器上訪問,上傳文件,網站代碼卻不是從我的機器上查找。而是從伺服器上查找路徑。怎樣做到從我的機器上查找呢? 求哪段代碼能夠從本地查找 補充: 我是用的絕對路徑!就算是用相對路徑的話。也要把或慧文件上傳到伺服器的工程目錄下啊? 補充: 把文件上傳到伺服器時,還是要找路徑。還是會去從伺服器找吧? 那還是找不到啊! 補充: 想在本地用個FileUpload瀏覽的路徑 string fullFileName = this.File1.PostedFile.FileName;//上傳的東西的路徑 int position = fullFileName.LastIndexOf('\\'); string fileName = fullFileName.Substring(position + 1);//改上傳東西的名字避免重復 this.File1.PostedFile.SaveAs(uploadPath + DateTime.Now.Millisecond + fileName);//上傳 補充: 這就是相對路徑,在message前加個~/不就行了, 補充: 你不是上傳嗎,怎麼有delete,? 追問: 具體的說下吧!我是數據導出到EXCEL表格 ,我用微軟上傳控制項得到路徑,然後 把數據保存到EXCEL表格中去。找路徑時在伺服器找所以會出現路徑找不到。(由於微軟上傳控制項必須選擇一個文件路徑才能上傳。所以就選擇個文件在刪除這個文件)。然後在通過 connString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + FilePath + ";Extended Properties=Excel 5.0;"; 新建Excel文件,把資料庫數據導出到Excel表格 回答: 哦 有創意,呵呵,不會導出asp,winform里用過不過的要導各個dll文件,呵呵很麻煩的。 追問: 順便問你句啊。 工程目錄怎麼獲得。 回答: server。path()。這個就獲得了,很容易把 追問: 你這個能嗎?server都沒有這個方法啊? mapPath() 好像也不行列! 回答: 但是就是mappath,能吧,獲得工程的路徑,你輸出一下,我以前就是那麼用的 其他回答(2)ID無法顯示5級2009-06-02你確定你那個路徑在伺服器上存在?使用絕對路徑 補充: 那你使用System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath就行了 補充: 伺服器訪問的是伺服器的路徑,你想在本地用個FileUpload瀏覽的路徑就行了?肯定是不行的啊。 2步工作必須做,上傳到伺服器對應路徑,讀取伺服器對應路徑文件。 補充: 不是肯定不行嗎?是一定不行,你伺服器都有隨便訪問客戶端的許可權了,那麼客戶端還存在什麼安全可言。 補充: try{if (!fileuploadExcel.HasFile){return;}if (fileuploadExcel.PostedFile.ContentType != "application/vnd.ms-excel"){Response.Write("<script>alert('文件類型應該為Excel!')</script>");return;}fileuploadExcel.SaveAs(伺服器文件路徑); if (!File.Exists(伺服器文件路徑)){Response.Write("亮察<script>alert('導入文件不存在!')</script>");return;}if (導入的方法){Response.Write("<script>alert('導入成功!')</script>"); File.Delete(伺服器文件路徑);}elseECommon.Alert(this, "導入敬團茄失敗!");}catch{ECommon.Alert(this, "導入失敗!");