2010-02-09から1日間の記事一覧

java.nio によるHTTPサーバのサンプル

単純に固定レスポンス返すだけのHTTPサーバのサンプル。やっつけです。 import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SelectionKey; import java.nio.channels.Selector; import …