jsp下顯示中文檔案名稱及絕對路徑下的圖片解決方案

來源:互聯網
上載者:User

(1)jsp顯示中文檔案名稱的圖片
方法一、將Tomcat中的server.xml檔案中改為: 複製代碼 代碼如下:<Connector port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="GBK" />

jsp頁面: 複製代碼 代碼如下:<%@ page import="java.net.URLEncoder" %>
<img src="...../.../URLEncoder.encode("圖片名.jpg","GBK")"/>

方法二、在tomcat的server.xml
增加一個屬性:URIEncoding="UTF-8"
修改之後為複製代碼 代碼如下:<Connector port="8080" protocol="HTTP/1.1"
maxThreads="150" connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8"/>

(2)顯示絕對路徑下的圖片
思路:將本地硬碟下的檔案讀取檔案流,使用servlet讀取圖片顯示在jsp頁面上
servlet代碼: 複製代碼 代碼如下:public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html; charset=UTF-8");
response.setContentType("image/jpeg"); //設定圖片格式格式,這裡可以忽略
FileInputStream fis = new FileInputStream("D:/ftp/xxx.jpg");
OutputStream os = response.getOutputStream();
try {
int count = 0;
byte[] buffer = new byte[1024*1024];
while ( (count = fis.read(buffer)) != -1 )
os.write(buffer, 0, count);
} catch (IOException e){
e.printStackTrace();
}finally {
if(os!=null)
os.close();
if(fis != null)
fis.close();
}
}

在頁面裡直接引用<img src="servlet地址" />
訪問jsp頁面就可以顯示圖片了。
我覺得方法一是最簡單的了,呵呵!我已經試過方法一了,可以解決我的中文檔案名稱不顯示的問題,在些非常感謝xiaoxiaoxuewen。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.