diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-16 00:30:23 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-16 00:30:23 +0000 |
commit | c8875fb97fc03779a5bba09872227b1d08e5d52a (patch) | |
tree | a0b991cf5866ae1d616639b906ac001811d74508 /libjava/classpath/test/java.io/FileReaderTest.java | |
parent | c40c1730800ed292b6db39a83d592476fa59623c (diff) | |
download | gcc-c8875fb97fc03779a5bba09872227b1d08e5d52a.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/test/java.io/FileReaderTest.java')
-rw-r--r-- | libjava/classpath/test/java.io/FileReaderTest.java | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/libjava/classpath/test/java.io/FileReaderTest.java b/libjava/classpath/test/java.io/FileReaderTest.java new file mode 100644 index 00000000000..e22cec53e72 --- /dev/null +++ b/libjava/classpath/test/java.io/FileReaderTest.java @@ -0,0 +1,69 @@ +/************************************************************************* +/* FileReaderTest.java -- Test of FileReader and InputStreamReader classes +/* +/* Copyright (c) 1998 Free Software Foundation, Inc. +/* Written by Aaron M. Renn (arenn@urbanophile.com) +/* +/* This program is free software; you can redistribute it and/or modify +/* it under the terms of the GNU General Public License as published +/* by the Free Software Foundation, either version 2 of the License, or +/* (at your option) any later version. +/* +/* This program is distributed in the hope that it will be useful, but +/* WITHOUT ANY WARRANTY; without even the implied warranty of +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +/* GNU General Public License for more details. +/* +/* You should have received a copy of the GNU General Public License +/* along with this program; if not, write to the Free Software Foundation +/* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +/*************************************************************************/ + +import java.io.*; + +public class FileReaderTest +{ + +public static void +main(String[] argv) +{ + System.out.println("Starting test of FileReader and InputStreamReader"); + + System.out.println("Test 1: File Read Test"); + try + { + FileReader fr = new FileReader("/etc/services"); + + System.out.println("Dumping file. Note that first 100 bytes will be skipped"); + fr.skip(100); + + char[] buf = new char[32]; + int chars_read = 0; + + while((chars_read = fr.read(buf)) != -1) + System.out.print(new String(buf, 0, chars_read)); + + fr.close(); + System.out.println("PASSED: File read test"); + } + catch(IOException e) + { + System.out.println("FAILED: File read test: " + e); + } + + System.out.println("Test 2: File Not Found Test"); + try + { + FileReader fr = new FileReader("/etc/yourmommasawhore"); + System.out.println("FAILED: File Not Found Test"); + } + catch (FileNotFoundException e) + { + System.out.println("PASSED: File Not Found Test"); + } + + System.out.println("Finished test of FileReader"); +} + +} // class FileReaderTest + |