JVM Languages
jqa698.txt
Associated article: Java Q&A
Tags: JVM Languages
Published source code accompanying the article by Kenneth Golomb and Thomas Sorgie in which they answer the question "How do you ensure secure communications from a Java applet?" Kenneth and Thomas show how, using HTTPS tunneling which provides SSL security. Also see JQA698.ZIP.
Java Q&A
by Kenneth Golomb and Thomas Sorgie
Example 1:
//URL encode the data to the x-www-form-urlencoded MIME format
String urlEncodedData = URLEncoder.encode(data);
System.out.println("URL Encoded Data: " + urlEncodedData);
//Instance the URL (protocol, host, port)
...


