java applet. 我要做一个java applet, 就是有一个按钮,按下后可以画出随机的图形。

其中有几个小要求:就是要包括下面的东西:appropriateparameterizedconstructors,methodstodraw(gfx),translate... 其中有几个小要求:就是要包括下面的东西: appropriate parameterized constructors, methods to draw(gfx), translate(x, y), and randomize() in order to select random colors, sizes and shapes.

int randomNumber (int low, int high) {
return( low + (int) Math.round(Math.random()*(high-low)) );
}

It must add this instance into a generic collection (I recommend an ArrayList) of shapes.

希望哪位高手可以帮我
展开
 我来答
kwqufxt
2011-05-09 · TA获得超过515个赞
知道答主
回答量:685
采纳率:0%
帮助的人:0
展开全部
import java.io.*;
//获取文件夹内容
public class getthing
{
public static void main(String[] args) throws Exception
{
System.out.println(welstr);
listFile(new File("e:\\aa")); //想要搜索的路径
}

public static void listFile(File file) throws Exception
{

if(file.isFile())
{
//输出的是完整的文件夹内文件的路径
System.out.println("File :"+file.getAbsolutePath());
//01.jpg就是你要找的图片
if (file.getAbsolutePath().endsWith("01.jpg"))
System.out.println("有搜索的图片");
}
else
{
System.out.println("Dir :"+file.getAbsolutePath());
File[] files =file.listFiles();
for(int i=0;i<files.length;i++)
{
listFile(files[i]);
System.out.println("回车");
}
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式