Quick, Easy classpath question

I thought I understood classpaths, but I encountered an error I could not explain.
I have my classpath set to:
C:\Project1;C:\Project2
Note that these folders are not packages themselves, but are the root folders containing all the package folders and class files.
One class contained inside of a package in Project2 imports and uses a class contained inside of package in Project1. I am getting a NoClassDef found error. I could have sworn that this has worked before.
Can someone set me straight on how I need to set this up?
Thanks in advance,
hqd

Hi Friend,
At run time it is possible to set the class path.
Use the following option with �Java�
$java �classpath .;C:\Project1;C:\Project2
It may help you
Have a nice day
Ajomon Mathew

Similar Messages

  • Quick/Easy J++ Question

    Could someone please help me....
    Write a program to determine the answers for each of the following:
    a. The square root of 30
    b. The sine and cosine of 100
    c. The value of the floor, ceiling, and round of 44.7
    d. The larger and the smaller ofthe character K and the interger 70.

    Generally, this board is a resource to help answer specific problems a Java developer runs into in the course of programming. Popping your head in to ask someone to do your work for you is rude, and more importantly, unlikely to help you learn anything that your programming assignment might teach you.
    I would suggest searching the forums to see if anyone else has asked similar questions and start from there. Once you have at least SOME of your own code, feel free to ask as many questions as you want, they are more than likely to be answered. If you can't at least start this simple program, maybe you ought to seek a more serious method of study or tutoring. I mean no disrespect by my response, I'm just trying to help you out and prevent any unnecessary flaming that has occured in the past in response to similar posts.
    -Shadow

  • Quick easy noob question

    hey guys gotta a dumb question... My moms mac has something on where it reads every text i type and program i open. how do i turn this off?! so annoying
    TIY

    Hi
    Sounds like it could be this.
    In System Preferences > Speech, deselect Other Spoken Items There are three there to see.
    It could also be:
    In System Preferences > Universal Access, turn off Enable text- to - Speech for Universal Access Preferences at the bottom of that screen.
    roam

  • Quick easy String question for u pros

    How can I add a string to a string. Each time I try the output is blank...:(

    How can I add a string to a string. Each time I try the output is blank...:(There are a variety of ways. Don't make us guess at what you're trying to do.
    Please post a short, concise, executable example of what you're trying to do. This does not have to be the actual code you are using. Write a small example that demonstrates your intent, and only that. Wrap the code in a class and give it a main method that runs it - if we can just copy and paste the code into a text file, compile it and run it without any changes, then we can be sure that we haven't made incorrect assumptions about how you are using it.
    Post your code between [code] and [/code] tags as described in Formatting Help on the message entry page. Cut and paste the code, rather than re-typing it (re-typing often introduces subtle errors that make your problem difficult to troubleshoot). Please preview your post when posting code.
    Please assume that we only have the core API. We have no idea what SomeCustomClass is, and neither does our collective compiler.

  • My itunes library has duplicated all of my music and would take me hours to delete one by one. What is a quick easy way to delete over 2,500 duplicates?

    My itunes library has duplicated all of my music and would take me hours to delete one by one. What is a quick easy way to delete over 2,500 duplicates?

    Apple's official advice is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group of identical tracks to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. This can happen, for example, if you start iTunes with a disconnected external drive, then connect it, reimport from your media folder, then restart iTunes.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background. Please take note of the warning to backup your library before deduping, whether you do so by hand or using my script, in case something goes wrong.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • Quick SAP Script question New Page Print

    Quick SAP Script question
    I have added a new page to an existing SAP Script BUT only want it to print if a condition is true.
    I need to do this from within the form as the print program is SAP Std.
    Any idea how I can prevent the new page from printing?
    i.e. I need the form NOT to call the new page if the condition is false. Is there a way of forcing an exit or stop from with in the form?

    Hi,
    To trigger a new page, there is script ediotr command NEW-PAGE.
    so find where is that command is triggered and use the below code for trigger it on any specific condition....
    if &condition& = 'True'
    /*  NEW-PAGE
    elseif
    /: NEW-PAGE   
    endif
    so it means if condition is satisfied your new page will not work.. else it will...
    Hope you got it...
    Try this..
    Best luck..
    Regs,
    Lokesh.

  • Havent a clue! Please help! Easy ABAP Question!

    Helly Gurus
    I am loading from a dso to a cube and doing a lookup on a second dso.
    eg
    'Name' is in the DSO1
    I lookup 'Address' from DSO2
    Then load to the cube.
    The problem is there may be more than one address so although I have coded the lookup to
    find all addresses, I do know how to get these into my results.
    Only the first address it finds is there.
    loop at DATA_PACKAGE.
        select * from DSO1 where
        NAME = DATA_PACKAGE-NAME.
        if sy-subrc = 0.
          move-corresponding DSO2 to itab1. collect itab1.
        endif.
        endselect.
      endloop.
    What do I need to do to get all of the results?
    I am in 3.5 so do not have the use of an End Routine.
    Thanks
    Tom Tom

    you need to do several treatments in fact you need to add records on the data_package (by the way it is not an easy ABAP question as you mentioned !)
    So
    Treatment 1: select all the records from ods2 table of adresses outside the loop
        select names adresses
        from ods2
        into table g_itab_ods2
          for all entries in data_package
          where name eq data_package-name.
    Treatment 2: delete double records of the internal table.
        delete adjacent duplicates from g_itab_ods2 comparing names adresses.
    Treatment 3: loop over the data_package. Within this loop read the internal ods2 table and loop over it to assign the corresponding adresses. Then append the results to the temporary data_package_tmp and move all the records to the initial data_package.
    loop at data_package assigning <data_fields>.
       read table g_itab_ods2 into l_g_itab_ods2
          with key name = <data_fields>-name.
          if sy-subrc eq 0.
            loop at g_itab_ods2 assigning <adresses>
            where name                = <data_fields>-name.
              <data_fields>-adresses= <adresses>-adresses.
              append <data_fields> to lt_data_package_tmp.
            endloop.
          endif.
        endloop.
        data_package[] = lt_data_package_tmp[].
    free lt_data_package_tmp.
    this should do what you want to do. hope this could help you out.

  • Is there a quick easy way to edit a wmv in Adobe Premiere?

    Is there a quick easy way to edit a wmv in Adobe Premiere?

    I don't know Microsoft's current edit program (and you don't provide your Windows version) but to edit Microsoft's codec with a Microsoft program search...
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US

  • Quick Easy Question About N580GTX-M2D15D5 Bios

    Hey guys!!
    I just have a real quick and easy (i suppose) question!
    I had bios version KH0, and MSI live update found KH1, i downloaded and flashed successfully (DOS window said please restart and press any key to exit) so i did, restarted my computer, and MSI live update utlity and gpu-z and MSI afterburner are all reporting the same bios version i had with the KH0, version 70.10.17.00.01 & date November 09, 2010
    MSI live update is not picking up the update again, so my question is, how do i know if it flashed correctly since the bios date and version remained the same?
    Thanks !

    Quote
    I had bios version KH0, and MSI live update found KH1, i downloaded and flashed successfully (DOS window said please restart and press any key to exit) so i did, restarted my computer, and MSI live update utlity and gpu-z and MSI afterburner are all reporting the same bios version i had with the KH0, version 70.10.17.00.01 & date November 09, 2010
    Quote
    version 70.10.17.00.01
    that's suppose to be, this is the version of the both bioses
    Quote
    & date November 09, 2010
    this is GPU release date, not BIOS date
    Quote
    MSI live update is not picking up the update again, so my question is, how do i know if it flashed correctly
    Get this: https://forum-en.msi.com/index.php?action=dlattach;topic=147603.0;attach=7931
    extract it somewhere, then run info1 , and look for the last line
    Quote
    since the bios date and version remained the same?
    they are not the same, your looking the wrong stuffs

  • Okay quick easy question for all who have successfully uploaded videos

    hi, this is my first post in the Apple forums!
    my quick question:
    I have Quicktime Pro, and am currently exporting a video to the iPod
    but it is taking an unusually long time...
    is this normal (and by long I mean I'm @ 16% and it has been 5 minutes)
    do I just need to be more patient?
    thanks
    ^_^

    don't say that...
    I successfully uploaded videos to my iPod I just was not doing it right
    my question has been answered already so STOP BRINGING IT UP AGAIN
    also, look... many people just got their iPods today and are kinda anxious to see the video capibilities work on them, so If you do not have anything constructive to say (by calling us n00bs), then I suggest you don't say anything at all
    iPod video, Dell modded Windows XP Windows XP > your macs

  • Quick Easy Question- I think...

    If you have 15 expressions, concatenated by Boolean OR's, how many of the expressions must be true for the entire thing to be true? My friend and I are arguing whether the answer is...
    a. at least 1
    b. all of them
    c. cannot be determined
    Thank you so much for your input. We are studying for an exam, trying to finish the practice questions. I appreciate any input and your time!! :-)

    Hi,
    Programming languages are created by humans, and therefore it is usually pretty easy to answer such questions. Think about the human language..
    Do you have a car or a house or a space ship?
    Any one who owns a car or a house would answer yes, even if they didn't own a space ship. That is, the whole expression evaluates to true if one of the statements is true.
    /Kaj

  • Quick, easy Logic 7 Pro AudioInstrument Question!  You'll earn quick points

    I still have 6 Pro, and am about to upgrade to 7 Pro.
    Is it true that AudioInstruments, such as EXS24 and ES1 and ES2, etc., no longer have the option to toggle between EDITOR and CONTROLS from a pull down tab at the top of the Instrument pane (you know, to the right of Bypass and Instrument # buttons)?
    I could have sworn that I saw that option omitted from 7 Pro screenshots, am I correct? If I am correct, is there still some kind of way to view the parameters in the CONTROLS display? I have found that display very useful in certain situations! Thanks!

    I'm only responding in the interests of actually earning a point.
    The answer to your question is no, it is not true.

  • Quick and easy battery question

    I just got my iPhone yesterday and let it charge fully overnight. But my question is: if the battery is about half-full, is there any harm done in charging it fully from this state? Or do I need to let it die down fully/give me the low battery warning before charging it? And I know that I should do a full charge/discharge cycle once a month or so.
    Thank you for your help!
    Jay

    You can charge whenever you want, it has a Lithium Ion Battery that can be charged at any time without and harm done. It is good too let iPhone die every so often and then fully recharge.

  • Quick, Easy question(s)

    I'm working mainly in GarageBand and then opening my project in Logic Express 8 to do some tweaking and then trying to export it to Pro Tools.
    When I try to Export as an OMF File I get that I don't have any audio regions in the project or no audio driver active.
    I don't know my way around Logic Express yet, obviously.

    From your profile link >  https://discussions.apple.com/people/homunculus
    Or, click Bookmark This right side of this window.
    You can see your Bookmarks by clicking Your Stuff / Bookmarks.

  • Quick, Easy RMAN syntax question

    Hi all,
    Have been struggling with the syntax to list / backup a section of archivelogs on a RAC database
    Basically I want to list / backup a group in the middle of the total
    I tried >list archivelog from sequence 3333 thread 2 until sequence 4444 thread 2;
    It doesn't like it
    This is Oracle RAC 10g 10.2.0.4
    Thanks guys
    Sandy

    just a syntax error
    RMAN> list archivelog from sequence 44253 thread 2 until sequence 44494 thread 2;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "until": expecting one of: "all, backed, completed, device, like, recoverable, ;, tag"
    RMAN-01007: at line 1 column 46 file: standard input
    RMAN>

Maybe you are looking for

  • Cannot drag and drop AP in WCS

    New to WCS, I tried uploading floor area in a building which was all fine, but when i select an AP from WCS and try to drag and drop to the right place it wont move. Any suggestions are appreciated.

  • Please explain the following displayed properties

    Hi, I tried to change the format of displayname under search result rendering setting. I found the following string for displaying display name: <b>rnd:displayname(contentLink/[1;2-3]/alignTop/space-right=30</b> please explain how this setting works?

  • Replacing the background in a cartoon movie

    I have a cartoon that shows the famous Hollywood sign in the background, and I want to replace "Hollywood" with someone's name. Is this possible? I can easily do one frame in photoshop, but does that mean I need to replace every frame or is there an

  • Can't get an e1000g based nic to work

    Hi, I have an HP NC360T network adapter, which is based on the Intel 82571EB chipset, in my Solaris 10 10/08 server, and I just can't get it to work. When I boot the server, it sees the 2 ports. I can plumb them; I can setup the IP address and everyt

  • Rdvdp - easy dvd ripping script

    rdvdp is a script I wrote to make backing up DVDs to x.264 simple and fast. It uses handbrake and dvdbackup What I wanted was a simple bash script where I could pop in a dvd, run the script with no special options, and come back 45min later with a ni