Posting HTML in JSON

From Logic Wiki
Jump to: navigation, search


  • Encode the file before sending
byte[] utf8 = htmlMessage.getBytes("UTF8");
htmlMessage= new String(new Base64().encode(utf8));
  • Decode the file after receiving
byte[] dec = new Base64().decode(htmlMessage.getBytes());
htmlMessage = new String(dec , "UTF8");