Java實現上傳檔案到本地伺服器

2021-09-13 09:31:36 字數 966 閱讀 9957

public static void main(string args) throws ioexception 

******dateformat sdf = new ******dateformat("yyyymmddhhss");

//目標檔名稱

//建立目標檔案

file targetfile = new file(filepath + targetname);

fileoutputstream fos = new fileoutputstream(targetfile);

//讀取本地檔案

//獲取本地檔案輸入流

inputstream stream = new fileinputstream(localfile);

//寫入目標檔案

byte buffer = new byte[1024*1024];

int byteread = 0;

while((byteread=stream.read(buffer))!=-1)

fos.close();

stream.close();

}

//獲取當前絕對路徑

file directory = new file("");// 引數為空

directory.getcanonicalpath();

file.separator //路徑分隔符

multipartfile file

file.getoriginalfilename(); 獲取上傳檔案的原名

java 上傳檔案到本地

上傳檔案 param source 原始檔的絕對路徑 param dis 目標檔案的路徑 param filetype 允許上傳的檔案型別列表 return public string uploadfile string source,string dis,listfiletype else fil...

上傳本地檔案到伺服器上

上傳檔案到伺服器上的方法 1 使用commons fileupload 如下 boolean ismultipart servletfileupload.ismultipartcontent request if ismultipart catch filesizelimitexceededexce...

ajaxForm上傳檔案到本地伺服器(封裝)

不囉嗦,直接看 1.html div class con item fix span class f 文章封面 sup style color red sup span div class f con item img form method post enctype multipart form ...