Examples of TDataInputStream


Examples of de.desy.tine.io.TDataInputStream

   * @throws IOException
   */
  public static void bytesToStruct(TStructIfc struct, byte[] b) throws IOException
  {
    ByteArrayInputStream bytesIn = new ByteArrayInputStream(b);
    TDataInputStream istream = new TDataInputStream(bytesIn);
    struct.readData(istream);
    istream.close();
  }
View Full Code Here

Examples of de.desy.tine.io.TDataInputStream

   * @throws IOException
   */
  public static void bytesToStruct(TStructIfc struct, byte[] b, int offset, int len) throws IOException
  {
    ByteArrayInputStream bytesIn = new ByteArrayInputStream(b, offset, len);
    TDataInputStream istream = new TDataInputStream(bytesIn);
    struct.readData(istream);
    istream.close();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.