Package palmed.file

Examples of palmed.file.File


    private void readFile( final InputStream stream ) throws IOException
    {
        final DataInputStream input = new DataInputStream( stream );
        final String path = input.readUTF();
        if( !path.equals( "" ) )
            file_ = new File( path ); // FIXME remove dependency
    }
View Full Code Here

TOP

Related Classes of palmed.file.File

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.