/Pastebin4Java

Paste to pastebin inside of a java application.

Primary LanguageJavaGNU General Public License v3.0GPL-3.0

Pastebin4Java

Paste to pastebin inside of a java application.

Using Pastebin4Java:

  1. Create new class file (eg: Pastebin.java) in a new package (eg: api.incrementing.pw).
  2. Paste in the code (https://goo.gl/Z7OpJh).
  3. Do the following to upload to pastebin:
Pastebin paste = new Pastebin("dev key", "user key", Pastebin.Visibility.PUBLIC|UNLISTED|PRIVATE, "format type", "paste name", "paste contents");
paste.makePost(); //Returns a string (eg: System.out.println(paste.makePost()); would print out the url to the paste).