多选题
想从当前网页http://zyxy.edu.cn/java处下载xy.jpg图片,以下语句能实现此功能的是( )
A、Image pic=this.getImage(new URL(“http://zyxy.edu.cn/java/”),”xy.jpg”);
B、Image pic= this.getImage(“http://zyxy.edu.cn/java/”,”xy.jpg”);
C、URL u=new URL(this.getCodeBase(),”xy.jpg”);
Image pic=this.getImage(u);
D、Url u=new URL(this.getCodeBase(),this.getParameter(“IMAGE”));
Image pic=this.getImage(u);