Retourner au contenu associé (dépêche : Publication de la version 2009Q2 de Unladen Swallow)
Posté par wismerhill le 16 juillet 2009 à 20:38. En réponse à la dépêche Publication de la version 2009Q2 de Unladen Swallow. Évalué à 2.
java.io.InputStream is=new java.io.BufferedInputStream(new java.net.URL("http://download.savannah.gnu.org/releases-noredirect/tsp/dte(...) try{ java.io.OutputStream os=new java.io.BufferedOutputStream(new java.io.FileOutputStream("what_is_dtest.pdf")); try{ int c; while(c=is.read()>=0){os.write(c);} os.flush(); }finally{fos.close();} }finally{is.close();}
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Avantage
Posté par wismerhill . En réponse à la dépêche Publication de la version 2009Q2 de Unladen Swallow. Évalué à 2.
java.io.InputStream is=new java.io.BufferedInputStream(new java.net.URL("http://download.savannah.gnu.org/releases-noredirect/tsp/dte(...)
try{
java.io.OutputStream os=new java.io.BufferedOutputStream(new java.io.FileOutputStream("what_is_dtest.pdf"));
try{
int c;
while(c=is.read()>=0){os.write(c);}
os.flush();
}finally{fos.close();}
}finally{is.close();}