Created
January 2, 2014 07:38
-
-
Save resarahadian/8216054 to your computer and use it in GitHub Desktop.
Membuat Notify Message Java Swing di Elementary OS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class notifyJava | |
{ | |
public static void main(String[] ar) throws java.io.IOException | |
{ | |
String note[] = {"notify-send","Java Swing Notify di Elementary OS"}; | |
Runtime.getRuntime().exec(note); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment