NAME

FileInputStream Perl class to emulate a Java FileInputStream

AUTHOR

Sal Scotto sscotto@cpan.org

REQUIRES

Perl 5.005 or greater, IO::Handle

SYNOPSIS

use Java::IO::FileInputStream;
my $fstream = Java::IO::FileInputStream->new('myFile.temp');
my $byte = $fstream->read;

DESCRIPTION

This class simply provides a new constructor for Java::IO:InputStream. It was made to allow modeling of a java file input stream to help java programmers that are learning perl.

METHODS

readFully

This method will read X bytes and return an array of the data my @data = $stream->readFully(20);

COPYRIGHT

Copyright (c) 2002 Sal Scotto (sscotto@cpan.org). All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.