Package de.desy.tine.io

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


   * @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

Related Classes of de.desy.tine.io.TDataInputStream

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.