A new byte array will automatically be initialized with all zeroes. You don’t have to do anything.
The more general approach to initializing with other values, is to use the Arrays class.
import java.util.Arrays;
byte[] bytes = new byte[100];
Arrays.fill( bytes, (byte) 1 );