home *** CD-ROM | disk | FTP | other *** search
/ Java Developer's Companion / Java Developer's Companion.iso / documentation / tutorial / java / io / example-1.1 / WriteReversedThread.java < prev   
Encoding:
Java Source  |  1997-07-13  |  2.0 KB  |  68 lines

  1. /*
  2.  * Copyright (c) 1995-1997 Sun Microsystems, Inc. All Rights Reserved.
  3.  *
  4.  * Permission to use, copy, modify, and distribute this software
  5.  * and its documentation for NON-COMMERCIAL purposes and without
  6.  * fee is hereby granted provided that this copyright notice
  7.  * appears in all copies. Please refer to the file "copyright.html"
  8.  * for further important copyright and licensing information.
  9.  *
  10.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  11.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  12.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  13.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  14.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  15.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  16.  */
  17. import java.io.*;
  18.  
  19. class WriteReversedThread extends Thread {
  20.     PrintWriter pw;
  21.     BufferedReader br;
  22.  
  23.     WriteReversedThread(PrintWriter pw, BufferedReader br) {
  24.         this.pw = pw;
  25.         this.br = br;
  26.     }
  27.  
  28.     public void run() {
  29.         if (pw != null && br != null) {
  30.             try {
  31.                 String input;
  32.                 while ((input = br.readLine()) != null) {
  33.                     pw.println(reverseIt(input));
  34.                     pw.flush();
  35.                 }
  36.                 pw.close();
  37.             } catch (IOException e) {
  38.                 System.err.println("WriteReversedThread run: " + e);
  39.             }
  40.         }
  41.     }
  42.  
  43.     protected void finalize() {
  44.         try {
  45.             if (pw != null) {
  46.                 pw.close();
  47.                 pw = null;
  48.             }
  49.             if (br != null) {
  50.                 br.close();
  51.                 br = null;
  52.             }
  53.         } catch (IOException e) {
  54.             System.err.println("WriteReversedThread finalize: " + e);
  55.         }
  56.     }
  57.  
  58.     private String reverseIt(String source) {
  59.         int i, len = source.length();
  60.         StringBuffer dest = new StringBuffer(len);
  61.  
  62.         for (i = (len - 1); i >= 0; i--) {
  63.             dest.append(source.charAt(i));
  64.         }
  65.         return dest.toString();
  66.     }
  67. }
  68.