圖片伺服器地址
Ⅰ 如何查看網站伺服器里的圖片地址
用滑鼠指向圖片,點擊右鍵,指向屬性就可以查看圖片地址了。
Ⅱ 我要在一個網頁上傳一張圖片到伺服器,然後保存圖片的地址,在另一個頁面顯示圖片
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;
}
}
Ⅲ 網站伺服器圖片顯示內網IP地址,無法顯示
我們的程序也是我自己寫的 ,但大部分文件需要使用現成的。比如MD5加密文件,HTNL編輯器等。沒有人會去單獨寫這些的。
後我的這個問題就出在HTML編輯器上面。他保存的時候自動加絕對路徑。頭疼啊
_________________________________________
你看後台嗎? 我相信程序是你們自己寫 但HTML編輯器不會是你們自己寫吧 是採用別人現成的,所以去看一下吧
________________________________________________
應該是程序問題
可能是你的程序在後台錄入時, 後台自動把相對路徑改為絕對路徑
如果是這種情況的話 你去後台看下 查看源代碼方式 如果圖片前面自動加上http這個話 那就是系統問題。 你只要在錄入的時候先復制進去。在復制出來。在復制進去一次就可以了
我有個系統也是這樣的
Ⅳ 圖片格式的伺服器地址怎麼添加到測試連接
摘要 用ppt的超鏈接。
Ⅳ 谷歌圖片伺服器最新地址是什麼
電腦還是手機的啊
Ⅵ 這個圖片上的應該是什麼位置填伺服器的ip地址啊
你這個是 網站的 資料庫吧 裡面應該是網站的會員賬號和密碼 和登陸伺服器無關!想要登陸伺服器 直接 PING 下 這個網站的域名 就可以知道 IP 地址了!
Ⅶ html圖片地址怎麼寫我說的是上傳到伺服器上的圖的圖片地址
填寫地址的時候,用相對地址就可以了,這樣就可以找到了。如果你是使用的其他伺服器的圖片的話,使用http:\\。。。。。的形式,就可以了。
Ⅷ 上傳圖片填寫的是圖片的鏈接地址,這樣是遠程調用圖片,還是把圖片上傳到伺服器了
這樣是遠程調用圖片,圖片並沒有上傳到伺服器喲。如果說遠程伺服器開啟了防盜鏈的話,有可能這邊伺服器頁面是不顯示圖片的喲。
Ⅸ 伺服器里的圖片怎麼轉換鏈接地址
有圖片的是什麼樣的文件?網頁的話用Dreamweaver打開,選上圖片,在下面的屬性欄里可以找到鏈接地址,找到改了之後保存就可以了
Ⅹ 如果網站長期調用的圖片伺服器變更了url地址,會對網站造成什麼影響
地址不一樣了,你的圖片肯定就打不開了!
解決辦法是你要上傳一個與他一模一樣的網址和路徑,才能恢復圖片,這個顯然是不可能的,所以最安全的法子是把圖片保存在本地,如果本地空間小,非要調用外部地址,那可以找信得過的大站,而且還沒有設置鏈接有效期的站點,這樣相對要安全些!
回答的不多,分給多少要多少!