A. shopex4.8.5怎麼樣可以把詳細頁面中鏈接的圖片保存在本地伺服器,變成我自己網站開頭的鏈接地址的圖片呢
直接復制 到word上,就可以全部復制進來了,也可以點擊右鍵查看屬性 看具體的鏈接地址 下載到本地
B. C#程序保存圖片到伺服器地址怎麼寫 我是這樣的bitmap.save("http:\\192.168.0.105\F:\寶康\my sql連接測
//這是一個上傳圖片的例子,上傳其他文件都一樣
string strFileFullName = System.IO.Path.GetFileName(this.FileUpload1.PostedFile.FileName);
if (strFileFullName.Length > 0)
{
if (FileUpload1.HasFile)
{
string newFileName = GetNewFileName(strFileFullName);
string path = Server.MapPath("[伺服器端存儲圖片的路徑]" + newFileName);
string pathSaveImg = Server.MapPath("[伺服器端存儲圖片的路徑]" + newFileName);
this.FileUpload1.SaveAs(path);
[資料庫欄位]= "[伺服器端存儲圖片的路徑]" + newFileName;
}
else
{
MessageBox.Show(this, "找不到此圖片"); return;
}
}
//跟據文件名產生一個由時間+隨機數組成的一個新的文件名
//因為客戶端上傳的文件很可能會重名,所以要對文件名進行重命名
public static string GetNewFileName(string FileName)
{
Random rand = new Random();
string newfilename = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "m" +
DateTime.Now.Day.ToString() + "d"
+ DateTime.Now.Second.ToString() + DateTime.Now.Minute.ToString()
+ DateTime.Now.Millisecond.ToString()
+ "a" + rand.Next(1000).ToString()
+ FileName.Substring(FileName.LastIndexOf("."), FileName.Length - FileName.LastIndexOf("."));
return newfilename;
}
祝你成功!!!
C. 我要在一個網頁上傳一張圖片到伺服器,然後保存圖片的地址,在另一個頁面顯示圖片
public class UploadAction extends ActionSupport {
//接收文件 名稱需要和表單name名稱一致
private File image;
//上傳多個圖片文件
private File[] images;
//上傳文件類型[image]為表單name名稱,ContentType為固定寫法
private String imageContentType;
private String[] imagesContentType;
//上傳文件名稱[image]為表單name名稱,FileName為固定寫法
private String imageFileName;
private String[] imagesFileName;
//上傳一個文件
public String upload(){
//將長傳的文件存儲到images文件夾下,首先根據images名稱得到具體路徑
String realPath = ServletActionContext.getServletContext().getRealPath("images");
File file = new File(new File(realPath),imageFileName);
//如果輸入為空 沒選擇圖片的話
if(image != null){
//判斷文件夾存不存在
if(!file.getParentFile().exists()){
file.getParentFile().mkdir(); //創建一個文件夾
}
try {
FileUtils.File(image, file);
super.addActionError("上傳成功");
} catch (IOException e) {
super.addActionError("上傳失敗");
e.printStackTrace();
}
}
return SUCCESS;
}
//上傳多個文件
public String manyUpload(){
//將長傳的文件存儲到images文件夾下,首先根據images名稱得到具體路徑
String realPath = ServletActionContext.getServletContext().getRealPath("images");
System.out.println(realPath);
File file =null;
if(images != null){
try {
for (int i = 0; i <images.length ; i++) {
file = new File(new File(realPath),imagesFileName[i]);
FileUtils.File(images[i], file);
}
super.addActionError("上傳成功");
} catch (IOException e) {
super.addActionError("上傳失敗");
e.printStackTrace();
}
}
return SUCCESS;
}
public File getImage() {
return image;
}
public void setImage(File image) {
this.image = image;
}
public String getImageContentType() {
return imageContentType;
}
public void setImageContentType(String imageContentType) {
this.imageContentType = imageContentType;
}
public String getImageFileName() {
return imageFileName;
}
public void setImageFileName(String imageFileName) {
this.imageFileName = imageFileName;
}
public File[] getImages() {
return images;
}
public void setImages(File[] images) {
this.images = images;
}
public String[] getImagesContentType() {
return imagesContentType;
}
public void setImagesContentType(String[] imagesContentType) {
this.imagesContentType = imagesContentType;
}
public String[] getImagesFileName() {
return imagesFileName;
}
public void setImagesFileName(String[] imagesFileName) {
this.imagesFileName = imagesFileName;
}
}
D. 已知圖片的URL地址,用代碼怎樣保存到磁碟
我這是這么寫的,應該很容易看懂吧
Private stream_Document As New ADODB.Stream
Public Sub SaveImageB(URL As String, SavePath As String)
Dim sFile
sFile = GetBody(URL) '取得圖片的具休內容的過程
With stream_Document
.Type = 1 '以二進制模式打開
.Open
.write sFile '將字元串內容寫入緩沖
.SaveToFile SavePath, 2 '將緩沖的內容寫入文件
.Close
End With
End Sub
Private Function GetBody(URL)
' on error resume next
Dim Retrieval As New XMLHTTP30
'Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", URL, False, "", ""
.send
GetBody = .responseBody
End With
Set Retrieval = Nothing
End Function
vb里要先引用ADODB和XMLHTTP30,不懂可以問我
E. JS怎樣將圖片保存到伺服器已經獲得了圖片數據
只能通過後台代碼,比如java,C#,php,asp之類的編程語言,將js得到的圖片信息上傳到伺服器的指定位置。
F. 用戶上傳的圖片保存在哪裡比如上傳到自己博客的圖片 傳上去後把本地的刪除了 那麼網站上的圖片保
圖片保存在伺服器上,資料庫存儲的是圖片的鏈接地址
搭建完伺服器後,會申請域名綁定伺服器的IP,域名會指向伺服器硬碟的一個文件夾內,圖片存儲在伺服器域名的文件夾下,就會有地址了,就像介面的地址一樣。
http://www.abc.com/index.php 就像這個,http://www.abc.com/這個是域名,域名下的index.php就是php程序。
G. 網站上圖片是地址連接如何將圖片全部保存電腦中
1、右擊保存
2、alt+prtscr 畫圖---粘貼
H. 使用android上傳圖片到伺服器,並且把圖片保存到伺服器的某個文件夾里
有兩種方法,第一,把你的圖片轉成位元組流,然後用post方法把位元組流傳到服務端,然後服務端接收到位元組流之後,開啟一個線程把它重新壓縮成圖片,保存在某個文件夾下面。
第二,開啟一個線程,用socket直接把圖片放到stream中傳到服務端,服務端接收後保存到文件夾下。
I. 請問如何做到輸入圖片地址,然後圖片下載到伺服器
就像QQ空間中一樣,復制到文章中圖片之後然後提示下載到伺服器,然後就能把那些圖片下載到自己的QQ相冊?請問這是如何實現的啊?
J. 已知本地文件路徑,怎樣將圖片上傳到伺服器
一般採用的是FTP進行上傳就可以了!可以去伺服器廠商(正睿)的網上找找文件上傳的相關文檔參考一下,應該很快就清楚了!