頁面中直接顯示FTP中的圖片瀏覽器
FTP根目錄下有一張圖片,以下spa
第一步:blog
經過以下格式,在瀏覽器上輸入路徑,肯定可看到圖片圖片
ftp://root:root@127.0.0.1/111.png
ftp://FTP用戶名:FTP密碼@IP地址/FTP目錄下圖片名
第二步:iframe
在JSP或HTML頁面代碼上,展現ftp圖片class
第一種方法:經過img標籤的src展現ftp圖片ftp
<div id="images" > <img alt="過車抓拍" src="ftp://root:root@127.0.0.1/111.png"/> </div>
推薦這種方法,能夠方便顯示圖片,在IE瀏覽器下能夠,在谷歌瀏覽器會直接下載圖片,據說是谷歌瀏覽器版本問題,不知道下載
有時候第一種方法好使,有時候圖片不顯示,那就是用第二種方法scroll
第二種方法:經過iframe標籤的src展現ftp圖片密碼
<div id="images" >
<iframe style="width:100px;height:100px;" src="ftp://root:root@127.0.0.1/111.jpg" scrolling="no" frameborder="no" border="0" marginwidth="0" marginheight="0"></iframe>
<iframe style="width:100px;height:100px;" src="ftp://root:root@127.0.0.1/111.jpg" scrolling="no" frameborder="no" border="0" marginwidth="0" marginheight="0"></iframe>
</div>
實在不行,只能先獲取圖片的流,再顯示了,網上有例子,沒試過這種方法