HTMLImage.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* $Id: HTMLImage.java,v 1.3 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.ui.html;
  3. import net.wastl.webmail.server.*;
  4. import net.wastl.webmail.misc.ByteStore;
  5. import java.util.Locale;
  6. /*
  7.  * HTMLImage.java
  8.  *
  9.  * Created: Wed Feb  3 18:23:28 1999
  10.  *
  11.  * Copyright (C) 1999-2000 Sebastian Schaffert
  12.  * 
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version 2
  16.  * of the License, or (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  26.  */
  27. /**
  28.  * A HTML Document that is actually an image.:-)
  29.  *
  30.  * @author Sebastian Schaffert
  31.  * @version $Revision: 1.3 $
  32.  */
  33. public class HTMLImage extends HTMLDocument {
  34.     public ByteStore cont;
  35. //     public HTMLImage(Storage loader, String path) {
  36. //  this(loader, Locale.getDefault(), path);
  37. //     }
  38. //     public HTMLImage(Storage loader, Locale locale, String path) {
  39. //  synchronized(loader) {
  40. //      cont=new ByteStore(loader.getBinaryFile(path,locale));
  41. //      cont.setContentType(loader.getMimeType(path));
  42. //      cont.setContentEncoding("BINARY");
  43. //  }
  44. //     }
  45.     public HTMLImage(ByteStore content) {
  46. this.cont=content;
  47.     }
  48.     public HTMLImage(Storage store,String name, Locale locale, String theme) throws WebMailException {
  49. cont=new ByteStore(store.getBinaryFile(name,locale,theme));
  50. cont.setContentType(store.getMimeType(name));
  51. cont.setContentEncoding("BINARY");
  52.     }
  53.     public int size() {
  54. if(cont == null) {
  55.     return 0;
  56. } else {
  57.     return cont.getSize();
  58. }
  59.     }
  60.     public String getContentEncoding() {
  61. return cont.getContentEncoding();
  62.     }
  63.     public String getContentType() {
  64. return cont.getContentType();
  65.     }
  66.     public byte[] toBinary() {
  67. return cont.getBytes();
  68.     }
  69.     
  70. } // HTMLImage