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.
希望哪位高手可以帮我 展开
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.
希望哪位高手可以帮我 展开
1个回答
展开全部
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("回车");
}
}
}
}
//获取文件夹内容
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("回车");
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询