如何实现struts 
ActionErrors数量控制
我想请教一下大家: 
 我现在做了一系列的验证,如果错误则会在 <html:errors/> 上显示。但是我现在想让报错的数量控制在10条以内,该如何实现呢?
------解决方案--------------------转贴,供参考: 
 /* 
  * 简单的读/写文本文件的示例 
  * 这里包含了三个例子,即 
  * 1. 将文件读入到内存(这里是StringBuffer)的例子 
  * 2. 将内容中的文本写到文件 
  * 3. 将一个文件的内容读出来写入另一个文件中 
  *    同时也展示了如果从输入流中读出来内容写入输出流中(仅限文本流) 
  * 三个例子可以独立存在,所以根据需要只看其中一个就行了。 
  */   
 import java.io.BufferedReader; 
 import java.io.FileInputStream; 
 import java.io.FileOutputStream; 
 import 
java.io.IOException; 
 import java.io.InputStream; 
 import java.io.InputStreamReader; 
 import java.io.OutputStream; 
 import java.io.OutputStreamWriter; 
 import java.io.PrintStream; 
 import java.io.PrintWriter;   
 public final class AccessTextFile {   
     /** 
      * 1. 演示将流中的文本读入一个 StringBuffer 中 
      * @throws 
IOException       */ 
     public void readToBuffer(StringBuffer buffer, InputStream is) 
         throws IOException { 
         String line;        // 用来保存每行读取的内容 
         BufferedReader reader = new BufferedReader(new InputStreamReader(is)); 
         line = reader.readLine();       // 读取第一行 
         while (line != null) {          // 如果 line 为空说明读完了 
             buffer.append(line);        // 将读到的内容添加到 buffer 中 
             buffer.append( "\n ");        // 添加换行符 
             line = reader.readLine();   // 读取下一行 
         } 
     }   
     /** 
      * 2. 演示将 StringBuffer 中的内容读出到流中 
      */ 
     public void writeFromBuffer(StringBuffer buffer, OutputStream os) { 
         // 用 PrintStream 可以方便的把内容输出到输出流中 
         // 其对象的用法和 System.out 一样 
         // (System.out 本身就是 PrintStream 对象) 
         PrintStream ps = new PrintStream(os);    
         ps.print(buffer.toString()); 
     }   
     /** 
      * 3*. 从输入流中拷贝内容到输入流中 
      * @throws IOException 
      */ 
     public void copyStream(InputStream is, OutputStream os) throws IOException { 
         // 这个读过过程可以参阅 readToBuffer 中的注释 
         String line; 
         BufferedReader reader = new BufferedReader(new InputStreamReader(is)); 
         PrintWriter writer = new PrintWriter(new OutputStreamWriter(os)); 
         line = reader.readLine(); 
         while (line != null) { 
             writer.println(line); 
             line = reader.readLine(); 
         } 
         writer.flush();     // 最后确定要把输出流中的东西都写出去了 
                             // 这里不关闭 writer 是因为 os 是从外面传进来的 
                             // 既然不是从这里打开的,也就不从这里关闭 
                             // 如果关闭的 writer,封装在里面的 os 也就被关了 
     }   
     /** 
      * 3. 调用 copyStream(InputStream, OutputStream) 方法拷贝文本文件 
      */ 
     public void copyTextFile(String inFilename, String outFilename) 
         throws IOException { 
         // 先根据输入/输出文件生成相应的输入/输出流 
         InputStream is = new FileInputStream(inFilename); 
         OutputStream os = new FileOutputStream(outFilename); 
         copyStream(is, os);     // 用 copyStream 拷贝内容 
         is.close(); // is 是在这里打开的,所以需要关闭 
         os.close(); // os 是在这里打开的,所以需要关闭 
     }   
     public static void main(String[] args) throws IOException { 
         int sw = 1;     // 三种测试的选择开关 
         AccessTextFile test = new AccessTextFile();           
         switch (sw) { 
         case 1: // 测试读 
         { 
             InputStream i