1. 程式人生 > >《Java課程實習》日誌(週三)

《Java課程實習》日誌(週三)

由於弄了好久,想把圖片從上面獲取路徑,然後下面是隨機顯示的,在路徑那裡弄了好久的,所以到現在才發表。

獲取路徑和隨機顯示圖片部分程式碼

	File f = new File(strPath);  
							String[] names = f.list(new FilenameFilter(){
								public boolean accept(File f , String name){
									return name.endsWith(".jpg");  

								}    
							});

							Random r = new Random();  
							String strTmp = strPath+"/"+names[r.nextInt(108)];    
							String strTmp1 =strPath+"/"+names[r.nextInt(108)];    
							String strTmp2 = strPath+"/"+ names [r.nextInt(108)];  

							lblImg1.setIcon(new ImageIcon(strTmp));
							lblImg2.setIcon(new ImageIcon(strTmp1));
							lblImg3.setIcon(new ImageIcon(strTmp2));

在做程式設計之中,在某些方面的知識學得不好,會對以後的影響很大,這次讓自己認識到,還得從基礎抓實學起,以後才能在這條路上走得更遠更好。