當前位置:ag真人国际官网-ag旗舰厅官方网站 » 文件管理 » ssh2圖片上傳

ssh2圖片上傳-ag真人国际官网

發布時間: 2024-06-29 09:08:00

『壹』 ssh2中、從本地上傳文件是怎麼實現的





action中:

// myfile屬性用來封裝上傳的文件
private file myfile;
// myfilecontenttype屬性用來封裝上傳文件的類型
private string myfilecontenttype;
// myfilefilename屬性用來封裝上傳文件的文件名
private string myfilefilename;
方法中:
//設置上傳文件目錄
string filepath=servletactioncontext.getservletcontext().getrealpath("/****");
//基於myfile創建文件輸入流
inputstream is=new fileinputstream(myfile);
string a[] = myfilefilename.split("\\.");
system.out.println("上傳文件名:" a[0] "上傳文件類型:" a[1]);
//設置目標文件
file tofile=new file(filepath,「可以自己取" "." a[1]);
//創建一個輸出流
outputstream os=new fileoutputstream(tofile);
// outputstream bos = new fileoutputstream(filepath);//建立一個上傳文件的輸出流
int bytesread = 0;
byte[] buffer = new byte[8192];
while ( (bytesread = is.read(buffer, 0, 8192)) != -1) {
os.write(buffer, 0, bytesread);//將文件寫入伺服器
}

熱點內容
resin下jsp不能正常編譯 發布:2024-07-17 16:34:44 瀏覽:229
sqlserver如何切換主備伺服器 發布:2024-07-17 16:23:02 瀏覽:299
mc18伺服器ip 發布:2024-07-17 16:23:02 瀏覽:379
仙境傳說手游腳本 發布:2024-07-17 16:09:24 瀏覽:691
matlab命令窗口和新建腳本 發布:2024-07-17 15:51:26 瀏覽:375
建ftp文件夾 發布:2024-07-17 15:51:26 瀏覽:955
魔獸撿物腳本 發布:2024-07-17 15:27:56 瀏覽:130
開發ip伺服器 發布:2024-07-17 15:24:42 瀏覽:388
安卓系統視頻製作哪個好用 發布:2024-07-17 15:10:47 瀏覽:210
androidapk結構 發布:2024-07-17 15:10:43 瀏覽:945
网站地图