java.io
日本語 | ジャバ入出力パッケージ |
英語 | java in/out |
ふりがな | じゃばあいおー、じゃばてんあいおー |
フリガナ | ジャバアイオー、ジャバテンアイオー |
様々な入出力関連のクラスが入っているパッケージ。
J2SEのパッケージのひとつ。
FileクラスやFileInputStreamクラスといった、ファイル入出力関係のクラスが梱包されているパッケージである。
使用頻度はそれほど高くないが、ストリームクラスは複数のクラスを同時に使用することが多く、また拾う必要のある例外も多いため、必然的に多くのクラスを使用することになり、ついつい「java.io.*」と書きたくなってしまうパッケージでもある。
J2SEのパッケージのひとつ。
FileクラスやFileInputStreamクラスといった、ファイル入出力関係のクラスが梱包されているパッケージである。
使用頻度はそれほど高くないが、ストリームクラスは複数のクラスを同時に使用することが多く、また拾う必要のある例外も多いため、必然的に多くのクラスを使用することになり、ついつい「java.io.*」と書きたくなってしまうパッケージでもある。
参考サイト
// Sample.java
import java.io.File;
// ↑これがjava.ioパッケージ。
public class Sample
{
public static void main( String[] args )
{
// Fileクラスを使用します。
File file = new File( "file.txt" );
}
}
import java.io.File;
// ↑これがjava.ioパッケージ。
public class Sample
{
public static void main( String[] args )
{
// Fileクラスを使用します。
File file = new File( "file.txt" );
}
}
// Sample.java import java.io.File; // ↑これがjava.ioパッケージ。 public class Sample { public static void main( String[] args ) { // Fileクラスを使用します。 File file = new File( "file.txt" ); } }
「みだし」に含まれているページ
「解説」に含まれているページ
- BufferedInputStream
- BufferedOutputStream
- BufferedReader
- BufferedWriter
- ByteArrayInputStream
- ByteArrayOutputStream
- CharArrayReader
- CharArrayWriter
- CloneNotSupportedException
- DataInputStream
- DataOutputStream
- EOFException
- File
- FileInputStream
- FileNotFoundException
- FileOutputStream
- FileReader
- FileWriter
- FilterInputStream
- FilterOutputStream
- FilterReader
- FilterWriter
- InputStream
- InputStreamReader
- IO
- IOException
- java.io
- LineNumberInputStream
- LineNumberReader
- ObjectInputStream
- ObjectOutputStream
- OutputStream
- OutputStreamWriter
- PipedInputStream
- PipedOutputStream
- PipedReader
- PipedWriter
- PrintStream
- PrintWriter
- PushbackInputStream
- PushbackReader
- Reader
- SequenceInputStream
- Serializable
- StringBufferInputStream
- StringReader
- StringWriter
- Writer
「サンプルプログラムとか」に含まれているページ
- ..
- 127.0.0.1
- <%! %>
- <jsp:useBean>
- ASCII
- BufferedInputStream
- BufferedOutputStream
- BufferedReader
- BufferedWriter
- ByteArrayInputStream
- ByteArrayOutputStream
- CharArrayReader
- CharArrayWriter
- classesディレクトリ
- close
- Cookie
- CP932
- DataInputStream
- DataOutputStream
- doGet
- DOM
- doPost
- DTD
- EOF
- EOFException
- EUC
- EUC-JP
- File
- FileInputStream
- FileNotFoundException
- FileOutputStream
- FileReader
- FileWriter
- FilterInputStream
- FilterOutputStream
- FilterReader
- FilterWriter
- GET
- getBytes
- HEAD
- HTTP
- HttpServlet
- HttpServletRequest
- HttpServletResponse
- HttpSession
- HttpURLConnection
- IANA
- InputStream
- InputStreamReader
- IOException
- IPアドレス
- ISO-10646-UCS-2
- ISO-2022-JP
- ISO-8859-1
- java.io
- java.net.URL
- JavaBeans
- JSP宣言
- JSP暗黙オブジェクト「pageContext」
- JSP暗黙オブジェクト「request」
- JSP暗黙オブジェクト「response」
- JSP暗黙オブジェクト「session」
- LineNumberInputStream
- LineNumberReader
- localhost
- Logger
- Node
- ObjectInputStream
- ObjectOutputStream
- OutputStream
- OutputStreamWriter
- PageContext
- PipedInputStream
- PipedOutputStream
- PipedReader
- PipedWriter
- POST
- printStackTrace
- PrintStream
- PrintWriter
- Properties
- PushbackInputStream
- PushbackReader
- Reader
- RequestDispatcher
- RSS
- Rss4j
- Runtime
- SequenceInputStream
- Serializable
- ServletConfig
- ServletContext
- ServletException
- Shift_JIS
- StringBufferInputStream
- StringReader
- StringWriter
- System.err
- System.out
- TCP
- transient
- UCS-2
- UDP
- Unicode
- URI
- URL
- URLDecoder
- URLEncoder
- US-ASCII
- UTF-8
- web.xml
- Windows-31J
- Writer
- Xerces
- XML
- ZIP
- 「-」
- 「~」
- イントロスペクション
- エイリアス
- エンコーディング
- エンコード
- カスタムタグライブラリ
- カレントディレクトリ
- キャッシュ
- クッキー
- クライアント
- クライアントサーバーシステム
- クロスサイトスクリプティング
- サニタイジング
- サーバー
- サーブレット
- システムプロパティ
- シフトJIS
- ステートレス
- セッション
- セッションID
- セッションスコープ
- ソケット
- ダンプ
- テキストファイル
- ディレクトリ
- ディレクトリトラバーサル
- デコード
- ドメイン名
- ハンドラ
- バイト入力ストリーム
- バイト出力ストリーム
- バイナリーファイル
- パス
- ファイル
- ファイル区切り文字
- フラッシュ
- ブロックします
- プロパティファイル
- ホスト
- ポート番号
- リクエスト
- リクエストスコープ
- リクエストパラメーター
- リクエストヘッダー
- リネーム
- リフレクション
- ルート
- レスポンス
- レスポンスヘッダー
- ログファイル
- 丸数字
- 入力フォーム
- 半角カタカナ
- 改行文字
- 文字コード
- 文字入力ストリーム
- 文字出力ストリーム
- 文字化け
- 標準入出力
- 環境変数
- 直列化
- 相対パス
- 絶対パス