Java模塊化開發

模塊化編程編程

將程序按照功能分爲不一樣的模塊模塊化

不一樣模塊的程序寫在不一樣的包中,開發

共同的代碼抽取出來造成Util類,爲方便調用通常爲static的it

項目初期,按照業務功能劃分模塊,即自上而下的方法。開發的過程當中,按照功能劃分,即自下而上法。io

Java輸入輸出流程序

try{方法

FileInputStream in = new FileInputStream(new File(inPath));項目

FileOutputStream out = new FileOutputStream(new File(outPath));static

byte[] b= new byte[1024];while

int len = in.read(b);

while(len!=-1){

  out.write(b);

}

}catch(FileNotFoundException e){

  e.printStaticTrace();

}finally{

in.close();

out.flush();

out.close();

}

相關文章
相關標籤/搜索