jfinal上傳文件大小
㈠ jfinal上傳大文件 如何斷點續傳
點量Http、ftp多線程斷點續傳下載組件(下載DLL)內核源碼使用高效的c++代碼編寫,提供標準的動態鏈接庫(DLL),可供C/C++、Delphi、C#、java、VB、PowerBuilder、易語言等語言和各常用開發環境調用。
㈡ jfinal如何實現文件上傳到非工程目錄下並可
1 , 設置全局
@Override
public void configConstant(Constants me) {
me.setBaseUploadPath(String baseUploadPath)
}
/**
*Setfilebaseuploadpath.
*設置文件上傳保存基礎路徑,當路徑以"/"打頭或是以windows磁碟盤符打頭,
*則將路徑設置為絕對路徑,否則路徑將是以應用根路徑為基礎的相對路徑
*<pre>
*例如:
*1:參數"/var/www/upload"為絕對路徑,上傳文件將保存到此路徑之下
*2:參數"upload"為相對路徑,上傳文件將保存到PathKit.getWebRoot()+"/upload"路徑之下
*</pre>
*/
publicvoidsetBaseUploadPath(StringbaseUploadPath){
if(StrKit.isBlank(baseUploadPath)){
("baseUploadPathcannotbeblank.");
}
this.baseUploadPath=baseUploadPath;
}
2 , 使用Java的文件拷貝或者移動
UploadFile.getFile().renameTo(newFile);
㈢ JFinal能夠批量上傳文件到ftp文件伺服器嗎
必須是可以的啊, 配合 jsch.jar(ftp文件上傳使用) 使用。
Controller 源碼中已經提供兩個獲取 批量上傳的文件 方法
publicList<UploadFile>getFiles(StringuploadPath,intmaxPostSize){
if(==false)
request=newMultipartRequest(request,uploadPath,maxPostSize);
return((MultipartRequest)request).getFiles();
}
publicList<UploadFile>getFiles(StringuploadPath){
if(==false)
request=newMultipartRequest(request,uploadPath);
return((MultipartRequest)request).getFiles();
}
獲取 到 List<UploadFile> 文件集合之後, 再使用 jsch.jar 進行ftp文件上傳到其他伺服器
JSchjsch=newJSch();
SessionsshSession=jsch.getSession(this.username,this.host,this.port);
sshSession.setPassword(password);
PropertiessshConfig=newProperties();
sshConfig.put("StrictHostKeyChecking","no");
sshSession.setConfig(sshConfig);
sshSession.connect(20000);
Channelsftp=sshSession.openChannel("sftp");
sftp.connect();
。。。這個網路搜一下,代碼很多,這里就不在啰嗦了
㈣ jfinal怎麼上傳文件
JFinal約定,如果保存路徑是以 "/" 或者 "X:/" 打頭使用的是絕對路徑,否則使用相對路徑,默認的相對路徑為 WebRoot/upload,這個相對路徑還可以通過 me.setUploadedFileSaveDirectory(...)來設置
㈤ jfinal上傳怎樣改變上傳文件的名稱
在firefox上,input(type=file)默認獲取到的value值就是文件名。
在IE上,input(type=file)默認獲取到的value值是路徑。
因此用js來獲取fileupload中的上傳文件的文件名需要多方面考慮。
㈥ jfinal 上傳文件時 怎樣判斷文件是否為空
1.個人認為,判斷文件內容為空可以從兩個角度來考慮,第一種是讀取文件的內容,讀到的內容是否為空字元串;第二種是直接判斷文件的大校 偽 C# 代碼: /* 在代碼頭部引入 System.IO 命名空間 */ // 第一種方法 using(FileStream fs=new FileStrea...
㈦ JFinal如何實現圖片上傳
public void uploadpic(){
UploadFile upfile = getFile();//JFinal規定getFile()必須最先執行
File file = upfile.getFile();
String filename = file.getName();
String delfilename = filename;
if(filename!=null && !filename.equals("")){
filename = new SimpleDateFormat("yyyyMMddkkmmss").format(new Date())+filename;
/**
* 新保存的位置
*/
String path = getRequest().getSession().getServletContext()
.getRealPath("/");
String newPath = "/media/file/";//自定義目錄 用於存放圖片
/**
* 沒有則新建目錄
*/
File floder = new File(path + newPath);
if (!floder.exists()) {
floder.mkdirs();
}
/**
* 保存新文件
*/
FileInputStream fis = null;
FileOutputStream fos = null;
try{
File savePath = new File(path + newPath + filename);
if(!savePath.isDirectory()) savePath.createNewFile();
fis = new FileInputStream(file);
fos = new FileOutputStream(savePath);
byte[] bt = new byte[300];
while (fis.read(bt, 0, 300) != -1) {
fos.write(bt, 0, 300);
}
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(null!=fis) fis.close();
if(null!=fos) fos.close();
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 刪除原圖片,JFinal默認上傳文件路徑為 /upload(自動創建)
*/
File delFile = new File(path+"/upload/"+delfilename);
if(delFile.exists()){
delFile.delete();
}
setAttr("msg",filename);
setAttr("t",1);
}else{
setAttr("t",0);
}
renderJson();
}
㈧ jfinal文件上傳支持的maxPostSize為多少
10MB
㈨ jfinal可以利用ajax上傳文件,getFile進行後台接收嗎
你的哪個參數沒有傳過去啊?如果是x、y、w、h的話,是因為你的參數沒有往後台傳遞,所以接收不到了。例如:varx=jQuery("#x").val();vary=jQuery("#y").val();varparams={"x":x,"y":y};data:params,