インフォ FAQ
言語 環境比較
 
Index
 
  Processing 1.0 _ALPHAリファレンスは開発途中である。
もしエラーやコメントがあれば、reas at groupc.netへメールして下さい。
Name  

loadStream()

   
Examples  
InputStream input = loadStream("sometextfile.txt"); 
InputStreamReader isr = new InputStreamReader(input); 
BufferedReader reader = new BufferedReader(isr); 
 
String line; 
while ((line = reader.readLine()) != null) { 
  println("next line is: " + line); 
} 

Description  

Java InputStreamとしてファイルをロードする。もしファイルが大きすぎて一度に読めない場合はダウンロードしながら連続的に読み込む。ファイルは、"data" ディレクトリーに置かれるか、URLで特定する。ファイルはまた圧縮(gzip)でき、もし .gz の拡張子があれば、自動的に読み込んでいる際に解凍される。

 

   
Syntax  
loadStream(filename)
   
Parameters  
filename   文字列: ファイルの名前か、ロードするurl

   
Returns   InputStream ストリーミング入力
   
Usage   Web & Application
   
Related   loadStrings()
loadBytes()
writeStrings()
writeBytes()
   
© 2004- 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas