2019.5.3
private byte[] loadClassBytes(String name) throws IOException{
String cname = name.replace('.', '/')+".caesar";
byte[] bytes = Files.readAllBytes(Paths.get(cname));
for(int i=0;i<bytes.length;i++){
bytes[i] = (byte) (bytes[i] - key);
}
return bytes;
}