InputStream in = null;
OutputStream out = null; try{
in = new FileInputStream();
int len=0;
byte buffer[] = new byte[1024];
out = new FileOutputStream();
while((len=in.read(buffer))>0){
out.write(buffer,0,len);
}
}finally{
if(in!=null){
try{
in.close();
}catch(Exception e){
e.printStackTrace();
} }
if(out!=null){
try{
out.close();
}catch(Exception e){
e.printStackTrace();
} }
}
相关文章
- 08-15python使用xlrd模块读写Excel文件的方法
- 08-15Python笔记-csv文件的读写
- 08-15ReentranReadWriteLock读写锁
- 08-15读写锁 pthread_rwlock
- 08-15读写锁
- 08-15线程同步之读写锁
- 08-15NSIS FileOpen打开读写文件操作
- 08-15模版
- 08-15对大文件读写操作时谨慎使用fseek/lseek
- 08-15云图说|DDS读写两步走,带您领略只读节点的风采