Package org.tc65sh.device

Examples of org.tc65sh.device.FileInfo


        FileInputStream in = new FileInputStream(f);
        byte[] buf = new byte[(int) f.length()];
        in.read(buf);
        in.close();
        ByteArray content = new ByteArray(buf);
        FileInfo fi = new FileInfo(false, f.getName(), (int) f.length(), new Date(f.lastModified()));
        FileHolder fh = new FileHolder(fi, content);
        return fh;
    }
View Full Code Here

TOP

Related Classes of org.tc65sh.device.FileInfo

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.