fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import org.apache.commons.codec.binary;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. String message = "Test";
  14.  
  15. int charCount = message.length() + 4;
  16. String hexInitiator = Integer.toHexString(charCount);
  17. String hexMessage = Hex.encodeHexString(message.getBytes());
  18.  
  19. System.out.print(hexInitiator);
  20. System.out.print(hexMessage);
  21. }
  22. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:6: error: package org.apache.commons.codec does not exist
import org.apache.commons.codec.binary;
                               ^
Main.java:17: error: cannot find symbol
		String hexMessage = Hex.encodeHexString(message.getBytes());
		                    ^
  symbol:   variable Hex
  location: class Ideone
2 errors
stdout
Standard output is empty