Pls help...i'm very, very new 2 this...

hi,
ok...i've got 2 questions :
1. if i get any sort of warning msg when compiling...does that mean i can still run the program, or are there certain exceptions?
2. what on earth does this mean?
Exception in thread "main" java.lang.NoClassDefFoundError filename
any help would be greatlt appreciated...
thanks

1. if i get any sort of warning msg when
compiling...does that mean i can still run the
program, or are there certain exceptions?
I don't have a definitive answer. If the compiler generates a new .class file, then you can run it. If you get a "... uses a deprecated method" message, it produces a file. I don't know of any other message that I've seen where a new file has been produced.
2. what on earth does this mean?
Exception in thread "main"
java.lang.NoClassDefFoundError filename
You entered a command like "java filename" and the jvm could not find a CLASS named filename. (The argument to the java command is the case-sensitive CLASS NAME not a file name.) The jvm searches thru the directories in the system Classpath setting to find a class. So, either no class named filename exists or it exists some place where the jvm isn't looking.

Similar Messages

  • HT4623 HELLO I WISH TO GET A up date to down programs on my 3g i phone please help i am very new at this stuff

    I have a 3g phone and I need to update it to download the old and new programs on the phone
    It's says I i need a i OS 5 or 6

    The iPhone 3G is obsolete. It can not run anything higher than iOS 4.2.1. There are some old apps in the app store that will still run on it, but most newer apps will not.

  • I   just  got  a  new iPone 4S and  would  like  to  change  my ringtone  to  an  Allen  Jackson  song .  I  already  download iTunes . I'm  very  new  to this  and  need  help ????..please

    I just  got  a  new iPhone 4S . I  would  like  to  change my  ringtone to an Alan Jackson  song .  I already download i Tunes .  but  i don't  know  how  to  do it . i'm  very  new  to this  and  would  like to know if someone  can help me with this ? Thanks

    Your past purchases are not on the computer.   By choosing download all, those purchases will download to the computer. 
    Once authorized to your iTunes account you can control the computer.
    When syncing the iPad the first time you will get the warning " this iPad is synced with another computer, syncing will erase all contents and replace with the contents of this computer"
    Say yes, this is what you wan to do. 

  • How do I get music from my PC, that was originally from CDs, to the iPod touch?  I think you have to get them on iTunes 1st, then sync them over to the iPod?  How do you do this whole process?  Thanks, I'm very NEW at this.

    How do I get music from my PC, that was originally from CDs, to the iPod touch?  I think you have to get them on iTunes 1st, then sync them over to the iPod?  How do you do this whole process?  Thanks, I'm very NEW at this.

    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    The sync the music to your iPod by:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    Message was edited by: lllaass, I first thought she wanted iPod to computer.

  • Having problems accessing any apps on my iCloud. Set up and signed in successfully but then when I click on an app it just says there's a problem but doesn't say how to fix it. Please help, am very new to this!

    Hi
    I am very new to updating my iPod touch and this is the first time I've used the iCloud. However, I am having problems accessing any apps on my iCloud such as photos, reminders etc. I've set it up on my iPod touch successfully and I can sign in on my PC. However, when I try to access any of the apps it says there was a problem. It doesn't tell me how to fix it or what the problem is.
    Is anyone able to help?

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • Hello I,m very ,very new to this Apple expeirence and  i,m very lost could some please tell me where I can obtain a easy instruction manual on the apple imac  thank you a

      Hello I,m very new to the world of Apple and I,m very lost  where can i get a manual on how to learn all there is to know , step by step,  as well I also have a laptop but cant seem to get onto the internet when I,m away  would I need to take it too a Apple store ,and get them to show me is it somthing I,m not doing right. ???

    Hi and Welcome...
    You may find these Links of Interest and Value...
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    iMac Support
    http://www.apple.com/support/imac/intel/
    Enjoy your Mac...

  • HT1443 Pls help me to upgrade my new games

    Pls help me to upgrade my games

    Need a little more to go on than that please. What games are they? What have you tried? What responses have you gotten?

  • HT4539 I  am very new to this...how do I sync my ipod to download music?

    I am new to this, how do I sync my ipod to download music?

    You have iTunes installed on your computer ? If not then you can download it from here : http://www.apple.com/itunes/download/
    If you connect your iPod to a USB port on your computer's iTunes then it should appear on the left-hand sidebar of your computer's iTunes (if you have iTunes 11 installed then you can enable the sidebar via control-S on a PC), and then on the right-hand side of iTunes you should be able to select the music that you want to sync to it.
    Syncing music : http://support.apple.com/kb/HT1351
    iPod manuals : http://support.apple.com/manuals/ipod/

  • Pls Help...VERY URGENT

    Hi all,
    I am unable to get a certain output from the code I have written: Below is the code.
    public class project extends JApplet
         private JLabel promptLabel;
         private JTextField inputField,displayField;
         private JTextArea outputArea;
         public void init()
              Container container = getContentPane();
              String s1 = JOptionPane.showInputDialog("Enter a few alphabets");
              String.valueOf(s1);
              outputArea = new JTextArea();
              container.add(outputArea);
              outputArea.setText("The alphabets that you have entered are: "+s1);
    I am suppose to get the output below:
    The user will be prompted to enter a few alphabets.After the user clicks on 'OK' a java applet is suppose to popout with the alphabets the user has typed like in below. the user has to enter a message using the alphabets he gave(e.g abcd)
    please enter a message using the alphabets entered:___________
    a
    b
    c
    d
    I am unable to get the output.. I dunno how to go about getting the output above.. Another query, below is a Histogram class.
    class Histogram
         int frequency[];
         String alphabet;
         Histogram(String alphabet)
              this.alphabet=alphabet;
              frequency=new int[alphabet.length()];
         void scan(String message)
              for(int i=0;i<message.length;i++)
                   frequncy[alphabet.IndexOf(message.charAt(i))]++;
         void setfrequency(int frequency[])
              for(int i=0;i<alphabet.length;i++)
              this.frequency=frequency[i];
         double entropy()
              int total=0;
              double probablity;
              log2=Math.log(2.0);
              for(int i=0;i<alphabet.length;i++)
                   total+=freguency[i];
    If I want to get the frequency of each alphabet displayed in the applet, how do i go about implementing the setfrequency method in the java applet.. I hope some one can help me.. Pls it is very urgent.. Thanx

    Hi Thanx, your code helped. I have got another question. How do i implement a method from another method class into the applet. say, i want to implemen set frequency from the below code into my applet you wrote above?
    class Histogram
         int frequency[];
         String alphabet;
         Histogram(String alphabet)
              this.alphabet=alphabet;
              frequency=new int[alphabet.length()];
         void scan(String message)
              for(int i=0;i<message.length;i++)
                   frequncy[alphabet.IndexOf(message.charAt(i))]++;
         void setfrequency(int frequency[])
              for(int i=0;i<alphabet.length;i++)
              this.frequency=frequency[i];
         double entropy()
              int total=0;
              double probablity;
              log2=Math.log(2.0);
              for(int i=0;i<alphabet.length;i++)
                   total+=freguency[i];

  • Please help out a very new mac user!

    So I haven't used this laptop in awhile been overseas. Never really did get my head around it anyway(A bit dumb when it comes to computers).
    Ok I am currently on dial-up with TPG till ADSL goes through next week. I am using V10.2.8.
    Now
    #1
    I want to wipe the hard disk, clear everything(My little bro
    has been using it and it's all out of wack and littered with **** stuff) I have 2.56GB free and have used 37.25 GB.
    #2
    I want to update it with the latest operating software. I was trying to do it before but besides it taken so slow, I thought I read somewhere that I needed 10.3.?.
    #3
    Also how do I have an email account with mac? Is that through ".Mac" and hence I have to pay for it?
    I am about to use about macs everyday and want to get very serious about it but please dumb it down for me and help me out.
    Thanks, any advice appreciated
    LUKE

    Welcome To Discussions LambLoinChops!
    If there is any data on the Mac, that you wish to retain, be sure to back it up before upgrading!
    And some additional info.
    Mac OS X Versions 10.1, 10.2, 10.3, and 10.4, are complete system upgrades that must be purchased.
    The point upgrades, such as 10.1.x to 10.1.5 (Final) 10.2.x to 10.2.8 (Final), 10.3.x to 10.3.9 (Final), and 10.4.x to 10.4.8 (Pending), can be downloaded for free.
    Tiger is available for purchase at The Apple Store (U.S.).
    Panther, is no longer available directly from the Apple Online Store, as Tiger 10.4.x is the most up to date OS.
    A Full Retail Version, of the Panther Install CDs, or a Full Retail Version, of the Tiger Install DVD, can be purchased rather inexpensively, at some online Apple retailers, Amazon, eBay, AppleRescue, FastMac, etc.
    Be sure not to purchase grey, upgrade or machine specific CDs or DVDs.
    Panther is only on CDs, not DVDs.
    Additional info in these links.
    Using OS X Install CDs/DVDs On Multiple Macs
    What's A Computer Specific Mac OS X Release
    Software Update, Upgrade: What's The Difference?
    Before upgrading to any OS X version, check to see if your Mac needs a Firmware Update.
    If one is required, you must start the computer from a Mac OS 8 or Mac OS 9 System Folder on the computer's hard disk, not from a CD, in order to install it.
    As Jaguar 10.2.x is installed, this has already been done.
    Once Panther 10.3.x is installed, you can use the 10.3.9 Combo Update, to upgrade to the final version.
    If your Mac meets the System Requirements for Tiger, you could also consider installing that.
    And then use the PPC 10.4.8 Combo Update.
    Panther System Requirements
    Additional Panther System Requirements
    Tiger System Requirements
    Mac Model Compatibility & Requirements For OS X
    Additionally,
    "Tiger ships on a DVD, but if your Mac doesn’t have a built-in DVD-ROM player, you’ll need CD media. When you buy Mac OS X Tiger, you qualify to purchase Tiger CDs for only $9.95."
    Download The Order Form Here. Media Exchange Program
    Shop Carefully, Examine All Documentation, And Good Luck!
    ali b

  • Pls help...very complicated task

    Dear all,
    I'm doing an application on J2ME to upload an png image and some arguments related to the image properties.
    the whole connection is done by using Java Http socket connection, including the server and client side.
    the server side is a java standalone app which will serve the cilent http request thru socket programming.
    May i know how can i complete this task ?
    if i convert the image and arguments into byte and sent thru output Stream from j2me client, how am i going to receive this stream data from server side thru socket, so that i can separately retrieve the image data and argument from the Server socket input Stream.
    Thanks for help.
    From Steve

    This might be of some help...
    First of all I suggest that you use datagrampackages and no streams since they are a bit easier to handle, don't have to worry that only half the stream got through and stuff.
    And if it's a one-way-traffic you want its rather easy.
    One way is to make the client and server as DatagramSockets (java.net.)
    You use the client to connect to the server ip and port and then send your package.
    The DatagramSocket has a receive function which will sort of freeze you program so you might want to put that in a separate thread.
    And as for the data... you can just put arg;image... and then split the byte[] the server got from the package at the first ";"
    ...that's how I would have done it at least
    Hope this'll be of some use to you.
    Shinik

  • Help needed with very new imac G5 user

    ok a friend of mine who owns a imac G5 seems to be having some bother as of late as since he has no net access just now im posting for him......basically its this......
    when he starts up his machine all is well right up to choosing the user, both he and his sister use the G5 accept when you choose which user wants to use the machine the password is accepted but then he gets a black screen with this displayed
    Darwin /BSD (Macintosh. local) (console)
    login:
    ive tried his usernames and passes on this screen but nothing seems to work.
    i'd apreciate as much help as possible as i said i'd get back to him tomorrow.
    thx in advance everyone

    Hi mugs001-
    Greetings and welcome to the Apple boards.
    Try resetting the password as described in this document: Mac OS X: Changing or resetting an account password.
    Luck-
    -DaddyPaycheck

  • Randomly Shuts Off Then Screen Stays Black...?? Very New At This...

    So this is my first Mac ever, I bought it from someone off of Craig's List about 4 or 5 months ago. It's a 17-inch PowerBook G4 ... I really don't know much specs about it, I'm not too computer savvy when it comes to specs and rams and ghz and all that - I don't even know what any of that means.
    I think I'm running Tiger 10.4.11 .. Or at least that's what someone told me.
    Anyways, it's been working amazing until recently - never had a problem with it until now. Whenever I would close my laptop, it normally would go into sleep mode, but within the past week, I noticed that it would turn on while the laptop is closed... I could hear it turning on, and then the Apple on the outside was lit up. The only way I could stop this from happening was to completely shut down the laptop before closing it.
    THEN... while I'm using the laptop, it would blink black and then back to normal and then randomly shut down. I would have to press the power button for it to come back on. It would do that several times in a row...
    THEN... it started to go black like that, but then when I would try to turn it back on, I could hear it booting up, and it would sound like it's on, but then the screen would remain black.
    I could very very faintly see the outline of stuff on the screen, but it would only stay like that for a few seconds then fade to completely blackness. I would have to continually press the power button, sometimes having to restart it several times before the screen actually comes on.
    Today, is when it did it for the longest - the screen went out this morning, and I couldn't get it to come back on until maybe 30 mins ago. And that's cuz I got kinda frustrated and slapped the sides on each side of the mouse pad and then the screen flicked back on as if I hit the computer just right for it to turn on.
    Sooo I don't know what to do... it's gotten progressively worse with this problem. Being a second hand Mac, I don't think it's under any kind of warranty to take it into the Apple store to get looked at... and therefore, I don't know how much it would cost to get it fixed. If it's even something serious or minor.
    I don't have much money to spare because I'm in college currently and barely make the money to pay my tuition.
    Oh yea, it also doesn't matter if I'm using it just on the battery, or if it's plugged in. It does it no matter what.
    Any suggestions??
    Please help...
    And keep in mind I don't know a lot of technical terms...
    Thanks in advance!
    Rev. JC

    Rev_JC:
    Welcome to Apple Discussions.
    There are a number of possible approaches to your issue. At first I thought it may be that your logic board was going out. The it sounded as if you needed to Reset the PMU. Finally, who talked about slapping it around and getting results, it sounds like it may be a loose display cable or something of that sort. Since you are completely new to Macs your best bet would be to go online and make an appointment at the Genius Bar in your local Apple Store. It costs nothing. They will look over your computer and give you an idea of what is wrong and what it will cost to rectify it.
    Meanwhile, to help to identify your computer more closely, while the computer is booted go to Apple Menu > About this Mac. That will tell you the OS you have installed, the Processor speed and the computer you have. Please report this info back with you response.
    Please do post back with further questions or comments.
    cornelius

  • Very new at this.can't get my pc to call my cell.....

    pls help

    Hey I had exactly the same problem as you, don't STRESS !!!!!!!...
    If this helps, great. If it doesn't, I can suggest a few other things..
    Anyway, I found that the motherboard would hang at early chipset initialization...
    I tried everything, because I had corsair ram which at the time which I thought would be the problem as I only had 1.0 Bios, and couldnt even post to boot into dos to flash to 1.2.
    It ended up being that I needed to take the motherboard out of the case, and make SURE that all the little golden screws which you screw teh motherboard down into, where in the exact position of hte holes in the motherboard.
    I found that the extra golden nut/screw haha 'things' ( there were like 4), were shorting  the board.
    Take your motherboard out, double check that there are these things ( you get with case ususally ) only in position for screws coming down through motherboard holes, none else.'
    EDIT - Sorry I didnt see that you had gotton it to work with your older ram. oops.

  • TS3899 cannot send email from my I pad, tried Apple help and Google with no success.  Ipad 2 running 7.0.6.  Any help would be very much appreciated, this is driving me crackers!

    I give up. Life is more important then this rubbish, forget it.

    When using the MobileMe account preset to create the account, the SMTP server is created with 587 as the SMTP server port, which can't be changed when using the MM account preset to create the account.

Maybe you are looking for

  • HT201304 how to open my ipad if i forgot the access pin

    How can i open my ipad if I cant remember the access pin code to get into it?

  • Deleting one site from MM

    Just to be on the safe side: if I want to delete one site from my MobileMe, then I have to delete the site from my iWeb AND delete it from my iDisk, right? Anything else to think of so this won't endanger any existing remaining sites?

  • Adobe Flash Player/local settings

    Have problems playing games with the new d/l of adobe flash player, it gives me needs to put info on my local storage options are deny  or allow but it freezes my games up  wont let you  allow or deny it..have tried using the f8 key and it also freez

  • Using the Database for Reports

    Has anyone ever used the RoboSource Control database to run reports on modifications/changes? We also have SAS and would like to see about generating reports about what topics have been modified and what has not, etc.

  • Flash: no more /tmp/ -files

    Earlier you could copy YouTube videos from /tmp/. They were named FlashXS6DL etc. Now they are in ~/.cache/chromium/Default/Cache?! And there's like 800 files now. Of course you can "ls -alht |less, but it was a lot easier before.. Is there any way t