论坛首页 Java企业应用论坛

Java 的 流操作

浏览 3486 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-12-08  
OO

接触java时间也不短了,可是对java的基础还是很模糊,真的郁闷,特别是对IO流方面的知识了解特别少.

有时候做一些应用不知道怎么入手,比喻说上传附件时,要求不能放在应用服务器下面(防止应用服务器下文件容量太大),这样就带来了一个问题,要使用这个附件时应用服务器就不能访问到,怎么办呢?想了几天最近只好选择流操作了, 可只又不熟悉,只好找资料

下面讲一个例子:

上传附件是一张相片

xml 代码
  1. <img src="downloadImage.do" >  

这个展示一张图片,用一个Action进行用流图片进行显示

下面是downloadImage对应的Action代码

java 代码
  1. // TODO Auto-generated method stub       
  2.         HttpServletRequest request     //根据你的Action得到  
  3.         HttpServletResponse response   //根据你的Action得到       
  4.             
  5.            ServletOutputStream out=response.getOutputStream();       
  6.          
  7.         //获取文件      
  8.         File file=new File("C:\\Sunset.jpg");       
  9.        
  10.         //这样写大文件瞬间占用内存
  11.         byte[] bate=new byte[(int)file.length()];;       
  12.  
  13.         FileInputStream fileStream=new FileInputStream(file);       
  14.         fileStream.read(bate,0,(int)file.length());       
  15.         out.write(bate);     

 下面转载一个下载的例子:

java 代码
  1. import java.io.*;   
  2. import java.net.*;   
  3. import java.util.*;   
  4.   
  5. /**  
  6.  * 

    Title: 个人开发的API

     
  7.  * 

    Description: 将指定的HTTP网络资源在本地以文件形式存放

     
  8.  * 

    Copyright: Copyright (c) 2004

     
  9.  * 

    Company: NewSky

     
  10.  * @author MagicLiao  
  11.  * @version 1.0  
  12.  */  
  13. public class HttpGet {   
  14.   
  15.   public final static boolean DEBUG = true;//调试用   
  16.   private static int BUFFER_SIZE = 8096;//缓冲区大小   
  17.   private Vector vDownLoad = new Vector();//URL列表   
  18.   private Vector vFileList = new Vector();//下载后的保存文件名列表   
  19.   
  20.   /**  
  21.    * 构造方法  
  22.    */  
  23.   public HttpGet() {   
  24.   
  25.   }   
  26.   
  27.   /**  
  28.    * 清除下载列表  
  29.    */  
  30.   public void resetList() {   
  31.     vDownLoad.clear();   
  32.     vFileList.clear();   
  33.   }   
  34.   
  35.   /**  
  36.    * 增加下载列表项  
  37.    *  
  38.    * @param url String  
  39.    * @param filename String  
  40.    */  
  41.   public void addItem(String url, String filename) {   
  42.     vDownLoad.add(url);   
  43.     vFileList.add(filename);   
  44.   }   
  45.   
  46.   /**  
  47.    * 根据列表下载资源  
  48.    */  
  49.   public void downLoadByList() {   
  50.     String url = null;   
  51.     String filename = null;   
  52.        
  53.     //按列表顺序保存资源   
  54.     for (int i = 0; i < vDownLoad.size(); i++) {   
  55.       url = (String) vDownLoad.get(i);   
  56.       filename = (String) vFileList.get(i);   
  57.   
  58.       try {   
  59.         saveToFile(url, filename);   
  60.       }   
  61.       catch (IOException err) {   
  62.         if (DEBUG) {   
  63.           System.out.println("资源[" + url + "]下载失败!!!");   
  64.         }   
  65.       }   
  66.     }   
  67.   
  68.     if (DEBUG) {   
  69.       System.out.println("下载完成!!!");   
  70.   
  71.     }   
  72.   }   
  73.   
  74.   /**  
  75.    * 将HTTP资源另存为文件  
  76.    *  
  77.    * @param destUrl String  
  78.    * @param fileName String  
  79.    * @throws Exception  
  80.    */  
  81.   public void saveToFile(String destUrl, String fileName) throws IOException {   
  82.     FileOutputStream fos = null;   
  83.     BufferedInputStream bis = null;   
  84.     HttpURLConnection httpUrl = null;   
  85.     URL url = null;   
  86.     byte[] buf = new byte[BUFFER_SIZE];   
  87.     int size = 0;   
  88.        
  89.     //建立链接   
  90.     url = new URL(destUrl);   
  91.     httpUrl = (HttpURLConnection) url.openConnection();   
  92.     //连接指定的资源   
  93.     httpUrl.connect();   
  94.     //获取网络输入流   
  95.     bis = new BufferedInputStream(httpUrl.getInputStream());   
  96.     //建立文件   
  97.     fos = new FileOutputStream(fileName);   
  98.   
  99.     if (this.DEBUG)    
  100. System.out.println("正在获取链接[" + destUrl + "]的内容...\n将其保存为文件[" + fileName + "]");   
  101.   
  102.     //保存文件   
  103.     while ( (size = bis.read(buf)) != -1)    
  104.       fos.write(buf, 0, size);   
  105.        
  106.     fos.close();   
  107.     bis.close();   
  108.     httpUrl.disconnect();   
  109.   }   
  110.   
  111.   /**  
  112.    * 设置代理服务器  
  113.    *  
  114.    * @param proxy String  
  115.    * @param proxyPort String  
  116.    */  
  117.   public void setProxyServer(String proxy, String proxyPort) {   
  118.     //设置代理服务器   
  119.     System.getProperties().put("proxySet""true");   
  120.     System.getProperties().put("proxyHost", proxy);   
  121.     System.getProperties().put("proxyPort", proxyPort);   
  122.   
  123.   }   
  124.   
  125.   /**  
  126.    * 设置认证用户名与密码  
  127.    *  
  128.    * @param uid String  
  129.    * @param pwd String  
  130.    */  
  131.   public void setAuthenticator(String uid, String pwd) {   
  132.     Authenticator.setDefault(new MyAuthenticator(uid, pwd));   
  133.   }   
  134.   
  135.   /**  
  136.    * 主方法(用于测试)  
  137.    *  
  138.    * @param argv String[]  
  139.    */  
  140.   public static void main(String argv[]) {   
  141.   
  142.     HttpGet oInstance = new HttpGet();   
  143. try {   
  144. //增加下载列表(此处用户可以写入自己代码来增加下载列表)   
  145. oInstance.addItem("http://www.ebook.com/java/网络编程001.zip","./网络编程1.zip");   
  146. oInstance.addItem("http://www.ebook.com/java/网络编程002.zip","./网络编程2.zip");   
  147. oInstance.addItem("http://www.ebook.com/java/网络编程003.zip","./网络编程3.zip");   
  148. oInstance.addItem("http://www.ebook.com/java/网络编程004.zip","./网络编程4.zip");   
  149. oInstance.addItem("http://www.ebook.com/java/网络编程005.zip","./网络编程5.zip");   
  150. oInstance.addItem("http://www.ebook.com/java/网络编程006.zip","./网络编程6.zip");   
  151. oInstance.addItem("http://www.ebook.com/java/网络编程007.zip","./网络编程7.zip");   
  152. //开始下载   
  153. oInstance.downLoadByList();   
  154.     }   
  155.     catch (Exception err) {   
  156.       System.out.println(err.getMessage());   
  157.     }   
  158.   
  159.   }   
  160.   
  161. }   
  162.   
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics