虽然上面的代码已经可以处理txt和jpg等文件的下载问题,并且也处理了在下载框中显示文件名称的问题,但是如果下载的文件名称是中文的,那么还是不行的。
3 通过Servlet下载3下面是处理在下载框中显示中文的问题!
其实这一问题很简单,只需要通过URL来编码中文即可!
download.jsp
<a href=http://www.likecs.com/"<c:url value=http://www.likecs.com/\'/DownloadServlet?path=这个杀手不太冷.avi\'/>">这个杀手不太冷.avi</a><br/>
<a href=http://www.likecs.com/"<c:url value=http://www.likecs.com/\'/DownloadServlet?path=白冰.jpg\'/>">白冰.jpg</a><br/>
<a href=http://www.likecs.com/"<c:url value=http://www.likecs.com/\'/DownloadServlet?path=说明文档.txt\'/>">说明文档.txt</a><br/>
DownloadServlet.java
String filename = request.getParameter("path");
// GET请求中,参数中包含中文需要自己动手来转换。
// 当然如果你使用了“全局编码过滤器”,那么这里就不用处理了
filename = new String(filename.getBytes("ISO-8859-1"), "UTF-8");
String filepath = this.getServletContext().getRealPath("/WEB-INF/uploads/" + filename);
File file = new File(filepath);
if(!file.exists()) {
response.getWriter().print("您要下载的文件不存在!");
return;
}
// 所有浏览器都会使用本地编码,即中文操作系统使用GBK
// 浏览器收到这个文件名后,会使用iso-8859-1来解码
filename = new String(filename.getBytes("GBK"), "ISO-8859-1");
response.addHeader("content-disposition", "attachment;filename=" + filename);
IOUtils.copy(new FileInputStream(file), response.getOutputStream());
JavaMail
今日内容
l 邮件协议
l telnet访问邮件服务器
l JavaMail
邮件协议 1 收发邮件发邮件大家都会吧!发邮件是从客户端把邮件发送到邮件服务器,收邮件是把邮件服务器的邮件下载到客户端。
我们在163、126、QQ、sohu、sina等网站注册的Email账户,其实就是在邮件服务器中注册的。这些网站都有自己的邮件服务器。
2 邮件协议概述与HTTP协议相同,收发邮件也是需要有传输协议的。
l SMTP:(Simple Mail Transfer Protocol,简单邮件传输协议)发邮件协议;
l POP3:(Post Office Protocol Version 3,邮局协议第3版)收邮件协议;
l IMAP:(Internet Message Access Protocol,因特网消息访问协议)收发邮件协议,我们的课程不涉及该协议。
3 理解邮件收发过程其实你可以把邮件服务器理解为邮局!如果你需要给朋友寄一封信,那么你需要把信放到邮筒中,这样你的信会“自动”到达邮局,邮局会把信邮到另一个省市的邮局中。然后这封信会被送到收信人的邮箱中。最终收信人需要自己经常查看邮箱是否有新的信件。
其实每个邮件服务器都由SMTP服务器和POP3服务器构成,其中SMTP服务器负责发邮件的请求,而POP3负责收邮件的请求。
当然,有时我们也会使用163的账号,向126的账号发送邮件。这时邮件是发送到126的邮件服务器,而对于163的邮件服务器是不会存储这封邮件的。
4 邮件服务器名称smtp服务器的端口号为25,服务器名称为smtp.xxx.xxx。
pop3服务器的端口号为110,服务器名称为pop3.xxx.xxx。
例如:
l 163:smtp.163.com和pop3.163.com;
l 126:smtp.126.com和pop3.126.com;
l qq:smtp.qq.com和pop3.qq.com;
l sohu:smtp.sohu.com和pop3.sohu.com;
l sina:smtp.sina.com和pop3.sina.com。
telnet收发邮件 1 BASE64加密BASE64是一种加密算法,这种加密方式是可逆的!它的作用是使加密后的文本无法用肉眼识别。Java提供了sun.misc.BASE64Encoder这个类,用来对做Base64的加密和解密,但我们知道,使用sun包下的东西会有警告!甚至在eclipse中根本使用不了这个类(需要设置),所以我们还是听sun公司的话,不要去使用它内部使用的类,我们去使用apache commons组件中的codec包下的Base64这个类来完成BASE64加密和解密。
package cn.itcast;
import org.apache.commons.codec.binary.Base64;
public class Base64Utils {
public static String encode(String s) {
return encode(s, "utf-8");
}
public static String decode(String s) {
return decode(s, "utf-8");
}
public static String encode(String s, String charset) {
try {
byte[] bytes = s.getBytes(charset);
bytes = Base64.encodeBase64(bytes);
return new String(bytes, charset);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public static String decode(String s, String charset) {
try {
byte[] bytes = s.getBytes(charset);
bytes = Base64.decodeBase64(bytes);
return new String(bytes, charset);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
2 telnet发邮件