Package com.webobjects.foundation

Examples of com.webobjects.foundation.NSData


        byte [] data = new byte[size];
        int bytesRead=0;
        while (bytesRead<size)
            bytesRead+=fis.read(data,bytesRead,size-bytesRead);
        fis.close();
        return new NSData(data);
    }
View Full Code Here


    public NSData excelSheetLocation() throws IOException {
        String path = application().resourceManager().pathForResourceNamed("DynaReporter.ppt", null, null);
  //System.out.println("excelSheetLocation: path:"+path);
        File file = new File(path);
        NSData data = dataFromFile (file);
  //System.out.println("excelSheetLocation: data:"+ data);
  return data;
    }
View Full Code Here

TOP

Related Classes of com.webobjects.foundation.NSData

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.