All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.util.ByteUtil Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.util;

import java.io.DataInputStream;
import java.io.IOException;

public class ByteUtil {
	/**
	 *
	 * 
	 * @param dis
	 * @return
	 * @throws IOException
	 */
	public static String readString(DataInputStream dis,int maxSize) throws IOException {
		byte[] bytes = new byte[maxSize];
		byte b = dis.readByte();
		int i = -1;
		StringBuilder sb = new StringBuilder();
		while (b != 32 && b != 10) {
			i++;
			bytes[i] = b;
			b = dis.readByte();
			if (i == 49) {
				sb.append(new String(bytes));
				i = -1;
				bytes = new byte[maxSize];
			}
		}
		sb.append(new String(bytes, 0, i + 1));
		return sb.toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy