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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: ByteStore.java,v 1.3 2000/04/18 13:12:47 wastl Exp $ */
  2. package net.wastl.webmail.misc;
  3. import java.io.*;
  4. import net.wastl.webmail.server.*;
  5. /*
  6.  * ByteStore.java
  7.  *
  8.  *
  9.  * Created: Sun Sep 19 17:22:13 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.  *
  29.  * @author Sebastian Schaffert
  30.  * @version
  31.  */
  32. public class ByteStore implements Serializable {
  33.     byte[] bytes;
  34.     String content_type=null;
  35.     String content_encoding=null;
  36.     String name;
  37.     String description="";
  38.     public ByteStore(byte[] b) {
  39. bytes=b;
  40.     }
  41.     
  42.     public void setDescription(String s) {
  43. description=s;
  44.     }
  45.     public String getDescription() {
  46. return description;
  47.     }
  48.     public void setContentType(String s) {
  49. content_type=s;
  50.     }
  51.     
  52.     public String getContentType() {
  53. if(content_type != null) {
  54. return content_type;
  55. } else {
  56. content_type=WebMailServer.getStorage().getMimeType(name);
  57. return content_type;
  58. }
  59.     }
  60.     
  61.     public void setContentEncoding(String s) {
  62. content_encoding=s;
  63.     }
  64.     
  65.     public String getContentEncoding() {
  66. return content_encoding;
  67.     }
  68.     
  69.     public byte[] getBytes() {
  70. return bytes;
  71.     }
  72.     
  73.     public void setName(String s) {
  74. name=s;
  75.     }
  76.     
  77.     public String getName() {
  78. return name;
  79.     }
  80.     
  81.     public int getSize() {
  82. return bytes.length;
  83.     }
  84.     /**
  85. * Create a ByteStore out of an InputStream
  86. */
  87.     public static ByteStore getBinaryFromIS(InputStream in, int nr_bytes_to_read) {
  88. byte[] s=new byte[nr_bytes_to_read+100];
  89. int count=0;
  90. int lastread=0;
  91. // System.err.print("Reading ... ");
  92. if(in != null) {
  93. synchronized(in) {
  94. while(count < s.length) {
  95. try {
  96. lastread=in.read(s,count,nr_bytes_to_read-count);
  97. } catch(EOFException ex) {
  98. System.err.println(ex.getMessage());
  99. lastread=0;
  100. } catch(Exception z) {
  101. System.err.println(z.getMessage());
  102. lastread=0;
  103. }
  104. count+=lastread;
  105. // System.err.print(lastread+" ");
  106. if(lastread < 1) break;
  107. }
  108. }
  109. // System.err.println();
  110. byte[] s2=new byte[count+1];
  111. for(int i=0; i<count+1;i++) {
  112. s2[i]=s[i];
  113. }
  114. //System.err.println("new byte-array, size "+s2.length);
  115. ByteStore d=new ByteStore(s2);
  116. return d;
  117. } else {
  118. return null;
  119. }
  120.     }
  121. } // ByteStore