Can you help me with applet?

Can you help me with applet?

I'm very new to applet, and i'm weak in graphic design part. How can i add the graphic in my test project? Can you help me with this:

import java.io.*; import java.util.*; import javax.swing.*;

public class fortoys { public static void main(String args[]) { new fortoys(); }

ArrayList alltoys;

fortoys(){
    alltoys=new ArrayList();
    String[] selectopt={ "1) Add a Toys", "2) View Toys Details ",
                        "3) delete a Toys", "4) quit"
                      };

    while(true){

    int choice=0;

         for(int i=0;i<selectopt.length;i++)

         System.out.println(selectopt[i]);
         System.out.println("Input your choice: ");


         Scanner scan=new Scanner(System.in);

         choice=scan.nextInt();

         switch(choice){

             case 4:
                return;

             case 3:
                if(alltoys.isEmpty()){
                    System.out.println("There is no data to delete!");
                    break;
                }
                System.out.println("Input the creator of the toys :");
                String creator=scan.next();
                if(!alltoys.contains(creator)){
                    System.out.println("No toys are make by this creator!");
                    break;
                }
                System.out.println("Input the models of the toys :");
                String models=scan.next();
                if(!alltoys.contains(models)){
                    System.out.println("No toys are in type of models!");
                    break;
                }
                System.out.println("Input the prices :");
                String prices=scan.next();
                if(!alltoys.contains(prices)){
                    System.out.println("No data found at this prices!");
                    break;
                }
                delete(creator,models,prices);
                break;

            case 2:
                if(alltoys.isEmpty()){
                    System.out.println("No data found !");
                    break;
                }
                System.out.println("Input the creator of the toys :");
                creator=scan.next();
                showtoys(creator);
                break;

            case 1:
                System.out.println("Input the creator of the toys :");
                creator=scan.next();
                System.out.println("Input the models of the toys :");
                models=scan.next();
                System.out.println("Input the prices of the toys:");
                prices=scan.next();
                if(!alltoys.isEmpty())alltoys.trimToSize();
                alltoys.add(creator);alltoys.add(models);alltoys.add(prices);
                break;

            default:
               System.out.println("Please Input a valid selection!");

         }

    }
}

void delete(String creator,String models,String prices){
     boolean data=false;
     if(alltoys.isEmpty()) {
         System.out.println("No data found..");
         return;
     }
     Object[] mdltoys=alltoys.toArray();
    for(int i=0;i<mdltoys.length;mdltoys=alltoys.toArray()){
        boolean del=false;
        if(mdltoys[i].equals(creator)){
            if(mdltoys[i+1].equals(models)){
                if(mdltoys[i+2].equals(prices)){
                    alltoys.remove(i+2);alltoys.remove(i+1);alltoys.remove(i);
                    del=true;
                    data=true;
                }
            }
        }
        if(del==false) i+=3;
        else{
            if(alltoys.isEmpty()) return;
            if(!alltoys.contains(creator)) return;
            i=0;
        }
    }
    if(!data) System.out.println("No data found!");
}

void showtoys(String creator){
    Object[] mdltoys=alltoys.toArray();
    for(int i=0;i<mdltoys.length;i+=3){
        if(mdltoys[i].equals(creator)){
             System.out.println("creator="+mdltoys[i]);
             System.out.println("models="+mdltoys[i+1]);
             System.out.println("prices="+mdltoys[i+2]);
             System.out.println("-------------------");
        }
    }
}

}

View Answers









Related Tutorials/Questions & Answers:
Can you help me with applet?
Can someone help me with this?
Advertisements
would you please help me?
Please can you help
Can anybody help me with this simple MySql code
Any one can help me? - Java Beginners
CAN ANYONE SOLVE THIS FOR ME. URGENT HELP NEEDED. PLEASE HELP
CAN ANYONE SOLVE THIS FOR ME. URGENT HELP NEEDED. PLEASE HELP
Can you provide me Hibernate configuration tutorial?
CAN U HELP ME TO CODE IN JSP FOR ONLINE VOTING SYSTEM
can u help me to get a calendar with color codes on days ???
Can you tell me how it worked?
help me
help me
help me
help me
help me
help me..
help me
can anyone help me to implement strength of the password - Security
please any one can help me to write a code for this question?
help me...
help me..
help me
please any one can help me to write a code for this question?
it is a linux program is there anyone who can help me out with it?
help me...
hello. can anyone help me with my java project, using jcreator?
help me..
it is a linux question is there anyone who can help me out with it?
help me
Help me
help me
Help Me
help me
Help me
help me
Help me
help me
Help me
Help me
Hii i want a JMS application can anybody help me
plz help me any one as fast as u can
Can you give me some good factory pattern examples?
help me - WebSevices
help me - WebSevices
Can you give me Hibernate one to one example?
Help me quickly plz??
Can you give me a simple Hibernate Sessionfactory example?
please help me.

Ads