国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

IO流_字節(jié)流復(fù)制圖片案例

2019-11-10 22:00:55
字體:
供稿:網(wǎng)友
package cn.itcast_03;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;/* * 需求:把E://林青霞.jpg內(nèi)容復(fù)制到當(dāng)前項(xiàng)目下的mn.jpg *  * 數(shù)據(jù)源:從哪里來 * 		e://林青霞	--	讀取數(shù)據(jù)	--	FileInputStream * 目的地:到哪里去 * 		mn.jpg		--	寫出數(shù)據(jù)	--	FileOutputStream */public class CopyImageDemo {	public static void main(String[] args) throws IOException {		// 封裝數(shù)據(jù)源		FileInputStream fis = new FileInputStream("e://林青霞.jpg");		// 封裝目的地		FileOutputStream fos = new FileOutputStream("mn.jpg");		// 讀取數(shù)據(jù),寫出數(shù)據(jù)		int by = 0;		while ((by = fis.read()) != -1) {			fos.write(by);		}		// 釋放資源		fos.close();		fis.close();	}}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 饶河县| 彝良县| 凤冈县| 临夏市| 甘泉县| 仁布县| 广安市| 清徐县| 大安市| 柞水县| 阜平县| 连州市| 景东| 苏尼特右旗| 兰坪| 长沙市| 驻马店市| 平和县| 金川县| 广宗县| 南漳县| 自治县| 阿图什市| 清徐县| 武隆县| 凤台县| 玉山县| 宝坻区| 阳曲县| 德令哈市| 慈溪市| 龙泉市| 鹰潭市| 长白| 楚雄市| 岳普湖县| 金平| 水富县| 涞源县| 呼伦贝尔市| 宁明县|