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

WEB邮件程序

开发平台:

C/C++

  1. /* $Id: HTMLErrorMessage.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.ui.html;
  3. import gnu.regexp.*;
  4. import java.util.*;
  5. import net.wastl.webmail.server.Storage;
  6. // This class is broken !!!
  7. /*
  8.  * HTMLErrorMessage.java
  9.  *
  10.  * Created: Thu Mar 25 11:53:23 1999
  11.  *
  12.  * Copyright (C) 1999-2000 Sebastian Schaffert
  13.  * 
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version 2
  17.  * of the License, or (at your option) any later version.
  18.  * 
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  27.  */
  28. /**
  29.  *
  30.  *
  31.  * Created: Thu Mar 25 11:53:23 1999
  32.  *
  33.  * @author Sebastian Schaffert
  34.  * @version
  35.  */
  36. public class HTMLErrorMessage extends HTMLDocument {
  37.     
  38.     protected static RE regexp;
  39.     
  40.     public HTMLErrorMessage(Storage loader, String message) {
  41. //super("WebMail Error Message ",loader.getTextFile(loader.getStringResource("error",Locale.getDefault()),Locale.getDefault()));
  42. try {
  43. if(regexp==null) {
  44. regexp=new RE("<<([^>]+)>>",RE.REG_ICASE & RE.REG_MULTILINE,RESyntax.RE_SYNTAX_PERL5);
  45. }
  46. } catch(Exception e) {
  47. e.printStackTrace();
  48. }
  49. REMatch[] matches=regexp.getAllMatches(content);
  50. for(int i=0;i<matches.length;i++) {
  51. content=regexp.substitute(content,message,0);
  52. }
  53.     }
  54.     
  55. } // HTMLErrorMessage