タグ

ブックマーク / www.tohoho-web.com (2)

  • HTTP入門

    HTTPとは? HTTPのサンプル メッセージ構文 リクエスト行 レスポンス行 メソッド ステータス番号 ヘッダ Accept (要求) Accept-Charset (要求) Accept-Encoding (要求) Accept-Language (要求) Accept-Ranges (応答) Age (応答) Allow (要求/応答) Authorization (要求) Cache-Control (要求/応答) Connection (要求/応答) Content-Encoding (要求/応答) Content-Language (要求/応答) Content-Length (要求/応答) Content-Location (要求/応答) Content-MD5 (要求/応答) Content-Range (要求/応答) Content-Type (要求/応答) Date (

  • とほほのJava入門 - swing

    Swing では フレーム の作成に、Frame の代わりに JFrame を使用します。下記は、JFrame を表示するだけのシンプルなサンプルです。 import java.awt.*; import javax.swing.*; class JFrameTest extends JFrame { JFrameTest() { getContentPane().setLayout(new FlowLayout()); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setTitle("JFrameTest"); setSize(200, 100); setVisible(true); } public static void main(String [] args) { new JFrameTest(); } } AWT の Frame

    stallman346
    stallman346 2011/09/05
    guiのサンプル集、ポップアップもある
  • 1