如何使用超连接下载txt文件
如题: 
             我连接的地址如果是txt文件它只会打开文件,不会下载它 
 我想让别人下载它怎么做?(不用使用右键——》下载)
------解决方案--------------------把文本文件做成doc,再在web.xml里面配置一下: 
  <mime-mapping>  
          <extension> doc </extension>  
          <mime-type> application/vnd.ms-word </mime-type>  
  </mime-mapping>
------解决方案--------------------你用文件流来实现下载功能啊
------解决方案--------------------用流来处理可以
------解决方案--------------------response.setContentType( "application/x-msdownload "); 
 //response.setContentType( "application/octet-stream "); 
 response.setHeader( "Content-Disposition ", "attachment;filename=a.txt "); 
 ServletOutputStream sos = response.getOutputStream(); 
 String str =  "abcdef "; 
 sos.write(str.getBytes());