fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. String rawData = "";
  13. String type = "application/x-www-form-urlencoded";
  14. String encodedData = URLEncoder.encode( rawData, "UTF-8" );
  15. URL u = new URL("https://w...content-available-to-author-only...m.com/");
  16. HttpURLConnection conn = (HttpURLConnection) u.openConnection();
  17. conn.setDoOutput(true);
  18. conn.setRequestMethod("POST");
  19. conn.setRequestProperty( "Content-Type", type );
  20. conn.setRequestProperty( "Content-Length", String.valueOf(encodedData.length()));
  21. OutputStream os = conn.getOutputStream();
  22. os.write(encodedData.getBytes());
  23.  
  24.  
  25. InputStreamReader in = new InputStreamReader((InputStream) conn.getInputStream());
  26.  
  27. String line;
  28. do {
  29. line = buff.readLine();
  30. System.out.println(line + "\n");
  31. } while (line != null);
  32.  
  33. }
  34. }
  35. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:36: error: class, interface, or enum expected
}
^
1 error
stdout
Standard output is empty