Running:
        javac OTPgen.java
        java OTPgen 264
should result in OTPkey.txt looking like this.
Running next:
        javac OTPenc.java
        java OTPenc
with OTPmsg.txt in the current directory like
this and OTPkey.txt as generated above,
should generate output OTPctext.txt like this.
Finally, running:
        javac OTPdec.java
        java OTPdec
with OTPctext.txt and OTPkey.txt in the current directory
generated as above should produce OTPdecrypt.txt in the current dirctory
that looks like this.
If the key above was generated with the command:
        java OTPgen 256
encryption and decryption should produce OTPctext.txt and
OTPdecrypt.txt that look like this
and this, respectively.