Java Integer do sznurka binarnego z wiodącymi zerami

int n = 1000;
String.format("%16s", Integer.toBinaryString(n).replace(' ', '0');
Super Stoat