Skip to content

Instantly share code, notes, and snippets.

@tarchan
Created July 12, 2011 01:45
Show Gist options
  • Save tarchan/1077229 to your computer and use it in GitHub Desktop.
Save tarchan/1077229 to your computer and use it in GitHub Desktop.
JavaScriptでSwingのウインドウを表示する
importPackage(javax.swing);
frame = new JFrame("sample");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 300);
frame.setLocationByPlatform(true);
frame.setVisible(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment