XP Pro is not recognizing class files

When I write a program that calls on a class file in the same folder and compile it, the XP prompt says it cant find the file. Also I cant get to my F drive (zip 250)? Help please

The title of the post leads me to assume he is using
Windows XP Professional.heh, heh :-) I was trying to work and do java forums at the same time!

Similar Messages

  • After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    I may have found an answer here:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive
    They only thing I can assume is that my external hard drive was slow to start and iTunes defaulted to its old directory (see the last paragraph at the link above). However, once my external was recognized shouldn't everything have fixed itself?
    Message was edited by: williamson42
    Message was edited by: williamson42

  • My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    WE know Disk Warrior is more reliable, hence more useful, and should be in any disk mechanics toolchest.
    For the record, I don't know anything of the kind. I have yet to see evidence that Disk Warrior is useful at all.
    What I do know is that you seem to take every opportunity you get to promote it in these forums. Do you work for Alsoft?
    Let me be a little more explicit. My opinion is that Disk Warrior is a waste of money if one has backups. If a journaled HFS directory is so badly corrupted that it can't be repaired by Disk Utility, then the volume should be reformatted and restored from backup, which has the same effect as running DW, but is probably faster and doesn't cost $99.

  • When I plug my ipod touch into my PC, it is not recognized in file explorer

    When I plug my ipod touch into my pc, it is not recognized in file explorer

    It does (should) show up in Explorer on a PC. On a Mac it does not show up in Finder
    Try:
    iOS: Unable to import photos to computer
    Have you installed any camera or scanning software?
    If you have a camera, does the camera show when you connect to computer?

  • Lightroom 4.4 not recognizing RAW files from supported cameras

    I started to get problems with Lightroom not recognizing RAW files from my Fuji XE-1 and Canon 5D Mark 3 cameras but I thought it was a problem with RC. After downloading some files today in 4.4 without a problem I encountered the same error message (unable to inport listed RAW files) again. The files open fine in Bridge. Any idea what is causing this problem?

    Hi Geoff
    I use a Mac with the latest version of Mountain Lion OS. The image files are being imported from the cards; in the case of the Fuji an SD card inserted in the card reader slot on the Mac and in the case of the Canon a CF flash card in a card reader attached to the Mac.
    Appreciate any help you can provide.

  • Tomcat6 does not load class files from WEB-INF/lib/myjarfile.jar  WHY???

    I have placed my jar file in c:\tomcat6\webapps\my-application\WEB-INF\lib\myjarfile.jar
    But, after restarting tomcat6, when i try to import the class file contained in the myjarfile.jar in a servlet, it says
    ProcessFileUpload.java:4: package test.test1 does not exist
    import test.test1.*;
    ^It clearly tomcat's class loading problem.
    As i unzipped my jar and placed the packagefolder structure to
    c:\tomcat6\webapps\my-application\WEB-INF\classes\testand it works perfectly.
    Anyone knows its workaround? please suggest if any configuration changes is required in tomcat or so.
    Thanks.
    ---Sujoy

    Thank you gimbal2 . There was error in creating the jar file myjarfile.jar.
    But, now I have created it again and placed it in place
    c:\tomcat6\webapps\my-application\WEB-INF\lib\myjarfile.jarand tried to use one on the Class file included within the jar to compile my servlet. But, still I am getting error at servlet compilation time. I want to place executable jar files in
    c:\tomcat6\webapps\my-application\WEB-INF\lib\myjarfile.jar and compile my servlet and execute the servlet.
    I DO NOT WANT TO unzip the jar, placing all unzipped files to
    c:\tomcat6\webapps\my-application\WEB-INF\classes\ folder and comiple my servlet and execute the servlet. But, I am failing to user WEB-INF\lib\ folder facility....please help me why i am not getting class files from WEB-INF\lib\ folder.
    If you please see the small code bit and tell me any possible error that would be very helpful.
    Step 1: my library java file MyClass.java
    package test.test1;
    public class MyClass {
         String myName = "Default return string value";
         public void setMyName(String varName) {
              this.myName = varName;
         public String getMyName() {
              return this.myName;
    }Step2 : Creating jar file of my library class files
    C:\jdk1.6\bin>jar cvf myjarfile.jar test
    added manifest
    adding: test/(in = 0) (out= 0)(stored 0%)
    adding: test/test1/(in = 0) (out= 0)(stored 0%)
    adding: test/test1/MyClass.class(in = 452) (out= 296)(deflated 34%)
    adding: test/test1/MyClass.java(in = 230) (out= 140)(deflated 39%)
    C:\jdk1.6\bin>Step3 : Double checking the created jar file content by listing its content
    C:\jdk1.6\bin>jar tf myjarfile.jar
    META-INF/
    META-INF/MANIFEST.MF
    test/
    test/test1/
    test/test1/MyClass.class
    test/test1/MyClass.java
    C:\jdk1.6\bin>Step4 : Placed myjarfile.jar to
    c:\tomcat6\webapps\my-application\WEB-INF\lib\Step5 : Restarted standalone Tomcat6 in my Windows XP SP2.
    Step6 : Created a simple servlet LibFolderTest.java within my-application\WEB-INF\classes\ folder with code
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import test.test1.*;
    public class LibFolderTest extends HttpServlet {
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              MyClass mc = new MyClass();
              out.println(mc.getMyName());
    }Step7 : Tried to compile my servlet LibFolderTest.java and got the following error
    LibFolderTest.java:4: package test.test1 does not exist
    import test.test1.*;
    ^
    LibFolderTest.java:11: cannot find symbol
    symbol  : class MyClass
    location: class LibFolderTest
                    MyClass mc = new MyClass();
                    ^
    LibFolderTest.java:11: cannot find symbol
    symbol  : class MyClass
    location: class LibFolderTest
                    MyClass mc = new MyClass();
                                     ^
    3 errorsThe above servlet compilation error on Step7 is telling me that myjarfile.jar is not loaded by Tomcat6 or not available for use when compiling servlet. I want to use myjarfile.jar from within WEB-INF\lib\ folder but I can not. please help.
    ---Sujoy

  • Iphoto 11 is not recognizing jpeg files downloaded from camera and card reader. Nor will it allow me to transfer from image capture

    iphoto 11 is not recognizing jpeg files from either the camera and card reader. Canon Eos rebel dig. Nor will it allow me to transfer images from image capture to iphoto. No problem downloading to image capture.

    Sounds like a damaged card.  Get your photos off the card with Image Capture and then reformat the card in the camera.  Take some pictures and see if the card is recognized by iPhoto and the card reader.
    OT

  • PS CS3 not recognizing Raw Files and converters Ive downloaded not working..Why not?

    PS CS3 not recognizing Raw Files and converters Ive downloaded not working..Why not?

    Do you seriously think we can answer that with zero information from you?
    Please give us:
    Operating System/version
    Photoshop version number
    Amount of RAM installed
    Hard drive(s) free capacity
    Video card make and model
    Camera make and model
    Then describe what you have done so far and the symptoms you are seeing.

  • Win xp not opening class file.

    win xp not opening class file.
    Runtime.getRuntime().exec("cmd /C start c:/database/Myclass.class");
    or
    Runtime.getRuntime().exec("cmd /C c:/database/Myclass.class");
    is this code wrong for xp ?

    let me give some more information...
    i have c:\database
    in this folder i have 2 class...Myclass.class and Dbconnection.class
    Myclass simply uses the database connection from Dbconnection.class , nothing else.
    you see both of the classes are in the same folder(i.e c:\database) and there is no package
    statement inside the code .
    in command prompt if i do....
    c:\database\java Myclass // this works fine
    but i want this class to run at runtime, so i did like above and it is not running!!
    what i am getting is a irritating windows file chooser is poping up and saying "class not
    found...browse or search in web...etc etc"
    Now my question is >
    Q1 . how can i run that class at runtime ?
    N.B
    here is some brief idea abt classes
    Dbconnection.java
    DriverManager.forClass("...database....");
    // only for database connection
    Myclass.java
    Connection con =db.getConnection();
    //use this con and show results for ur database related queries.
    }Q2. Can u plz tell those correct syntax how to run class file in this situation ?
    i will try all possible solutions tomorrow.
    thanx.

  • Yoga 2 Pro touchpad not recognized as precision touchpad on Windows 10

    Hi all, I was really delighted to see Synaptics drivers being available for the Yoga 2 Pro for Windows 10 on your site yesterday. However, I am really confused to see that the Yoga 2 Pro touchpad is not recognized as a precision touchpad. Does the hardware not allow it or is it Synaptic's fault or what else? I'd really love to have these settings: http://twitter.com/Daniel_Rubino/statuses/617023404911239168The Synaptics driver you provide doesn't allow me to change what happens when I tap with 3 fingers (btw, Cortana isn't activated by your driver anyway - it simply doesn't work) and I'd like to select by myself what should happen when I swipe with 3 fingers. Why do you stick to the Synaptics driver settings, if it's integrated into Windows 10? Thanks for any help and best regardsSebastian

    Also, 3 finger tap doesn't trigger Cortana over here... Please integrate the touchpad into Win 10 settings and let Windows handle all the stuff.

  • 11.1.2 essbase upgrade not recognizing application files location

    Hi all
    I am upgrading an essbase database (Planning) from 11.1.1.3 to 11.1.2.2,
    I trying to configure 2 essbase servers (original 11.1.1.3 and new 11.1.2) running on 1 physical server using different ports and filesystems
    Following all the steps in the Deployment guide in Preparing Essbase Data for Upgrading,
    I ran all the steps in the Manual file transfer instructions to copy from source machine to target machine.
    I have started the steps in rehosting the essbase applications,
    - Completed enable lookup by cluster name:
    - I completed the server to cluster script on the HSS box (updateEssbaseServer )
    when i went to run EssbaseUpdateEssbaseServer one of the planning databases did not update i got this error
    [Mon May 21 14:03:50 2012]cphypd.sherwin.com///admin/Error(1002097)
    Unable to load database [PlanFcst]
    Error loading application = 1002097, continue...
    looking in the logs i found that it was trying to go to the prior location of the 11.1.1.3 instance and not the new location of the 11.1.2 instance
    Why is it not recognizing the new datafile locations

    I saw this in the guide
    I followed these instructions and specified a different directory when running the staging tool, the script was empty, i do not believe it should be, it should contain mapping info to update essbase.sec, which it did not
    On the Configure Essbase Server page, for Full path to application location (ARBORPATH), specify the location of the existing or replicated Essbase data.
    Note:
    If you replicated data to a new machine, and if you selected Differently-named disk volumes, table spaces, or ARBORPATH on source and target or Consolidated disk volumes or tablespaces on target by exporting data during data replication, you must run a script immediately after configuring Essbase to update the Essbase security file to reflect the disk volumes on the upgraded system. The Essbase Staging Tool provides a script to update the settings in the security file (essbase.sec):
    Start the Essbase Server and EPM System services. Navigate to ARBORPATH/app on the machine that is hosting the upgraded Essbase Server and run the following script using MaxL:
    %ARBORPATH%/bin/startMaxl.bat -u userName editagtsec.msh
    where userName is the Administrator user name to connect to the upgraded Essbase server. The script prompts you to enter the password.
    Note:
    editagtsec.msh could be empty in some scenarios. For example, when you launched the Staging Tool, the Staging Tool reports on existing volumes. If no volumes are listed, editagtsec.msh is empty.

  • IPod classic - iPod and iTunes is not recognizing music files

    Here's the problem I am having:
    iPod is saying there is "no music" on the iPod. Yet, when you view the settings and files it shows there to be 70GB worth of data - that is how much music I have. iTunes is also not recognizing iPod either. I also get an error stating:
    "iTunes cannot read the contents of __ iPod. Go to the summary tab in iPod preferences and click RESTORE to restore this iPod to it's factory settings". It's also not reading anything from the Music database.
    This is the 2nd time I've had this error in the past two months. It happened in August - I noticed it had happened as I disconnected my iPod from my computer. The first time was when I tried to eject from iTunes. It said the files were currently in use by another program (I had nothing running, what program?), so I "safely removed" as I would a USB device. The 2nd time happened similarly, though not before iTunes locked up totally and would not let me eject from there. The last time I had this problem, I also removed each file/folder manually from iPod control, to hard drive, and restored iPod, and put them back on iPod. However, this time I am not so fortunate as it gives me an error when I attempt to copy stating either the "parameter is incorrect", or "cyclic redundancy error". Some of these files that are giving me this error at some point during the process have been accessible and working fine, and other times they are not, as I successfully copied five folders worth of data without error, then after I started getting errors with the next folders, attempted to copy one of the same folders into a different directory, which THEN gave me an error. I'm not sure what's going on here, but this is proving to be quite the pain and never experienced these problems with my 60GB iPod, which I did not take nearly as good of care as I have this one - and is still working with all of my original music on it.
    My question is how do I solve any of these errors, and what would be the best course of action to take? I have a 160 GB Classic iPod. Warranty expired (probably) September, and purchased from Circuit City.
    *I DO NOT wish to "Restore" unless absolutely necessary as I have 18,000 songs on my iPod. Restoring this would be cumbersome, and I keep my music on my iPod as I do NOT have the hard drive space to store it with*
    Please help!
    -dgo

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                          
    If recovery mode does not work try DFU mode.                         
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings         
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up      
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store         

  • Officejet pro 8000 not recognizing brand new HP black ink cartridge

    Hi. My officejet pro 8000 is not recognizing a brand new HP brand black ink cartridge. The black ink indicator remains lit and it will not print. I have unplugged the printer, but this did nothing. It is wierd, when I open the door where the cartridges are, the light goes out, it only goes on again when I close that door. The printer was working perfectly until this . Any helpful hints? Thanks so much.

    Hello chx2,
    Welcome to the HP Forums!
    I understand your Officejet 8600 is not recognizing your brand new black ink cartridge. I will do my best to assist you! Please make sure this printer is plugged into a direct wall. I just want to see if this makes a difference.
    Next, please follow these steps in order:
    1) Remove all ink cartridges from the printer, then close the door
    2) Remove the power cord from the printer (Do not press the power button)
    3) Please clean the ink cartridges by following this HP document here. (Also, make sure you have completed all the steps from this document)
    4) Wait 60 seconds or more, then plug the power cord back in
    5) Wait for the printer to turn on completely, then install the ink cartridges
    6) Try to print a document
    Please post your results, as I will be looking forward to hearing from you.
    I worked on behalf of HP.

  • DNG not recognizing NEF files

    .I have Photoshop CS5 and I recently downloaded Adobe DNG Converter 7.1 to convert my NEF files so that I can open them in Camera RAW which was working for about a week, now it is not recognizing them. Any suggestions as to why?

    I don't think you want to use the DNG converter on existing DNG files.  You would want to use it on your original NEF files taken by your camera.
    In the DNG converter, notice that the prompt is asking for the FOLDER that contains the raw files.  Choose the folder, but don't double click on the folder.  Don't expect to see your raw files listed.  Just choose the FOLDER, and don't try to go any deeper.  If you want to convert individual NEF files, drag/drop them onto the DNG converter icon.  The program will open and will convert that one file.
    Once you have chosen the folder containing your raw files, click on the convert button, and you will see each file listed as it is being converted.

  • Photoshop not recognizing PSD files

    My PSD files are not being recognized.  When I go to Properties and then Open With, and browse to the Photoshop application as usual, I am unable to select Photoshop as the program to open my file.  I am completely baffled.
    It looks like the Open With function is not recognizing PhotoShop, and I do not know if this is a Photoshop error or a Windows error.
    Other Adobe programs are working and are recognized just fine.  I am using Windows 7 and Photoshop CS4.  I am running up-to-date Norton 360 so it is extremnely unliklely to be a virus. 
    Help please!

    Sounds like a basic system problem, not a problem with Photoshop per se...
    First, Photoshop should have installed itself so that it would automatically be in the list of programs available to open that file type.
    Second, if it's not there by default, browsing to the Photoshop.exe file should make it work as you expect.
    I've just opened a file from my desktop using Right Click, then Open With, and choosing Photoshop.exe as you have described.  However, in my case Photoshop is already in the list of Recommended Programs.
    Out of curiosity, do you see it in the list of "Other Programs" toward the bottom of the Open With dialog?  You'll have to click on the little arrow to the right to see them.
    -Noel

Maybe you are looking for

  • Manipulate y-axis of built-in tooltip?

    Hi all,      Quick question...is there a way to manipulate the y-axis position of a tooltip without using a custom tooltip? For example, I have an image that has uses the builtin tooltip and I need to have it display above the image.      I have a se

  • Get Invoice Number after adding the invoice

    Hi,    I am adding a service invoice to SBO using the DI api. I am able to create the Invoice successfully. Immedietly after I execute the Invoice.Add line, I would like to get the Docentry that was assigned to the invoice. What is the bst way to do

  • System crashes - I don't what else can I try...

    I have a Macbook Pro, 2.53Ghz, 250Gb and 4Mb - Lion (recently updated) and I have been having several crashes and I can figure out what is causing it, here is a short description of what I have already tried (based on several readings on other thread

  • Lock Screen Lumia 920

    My screen locks as soon as I have dialed before I bring the phone to my ear.Thus I cannot use the phone while on a call and have to switch it off. Screen only comes back if the call is ended by the other party. Is there a quick fix?

  • Opening maximized window from embedded flash movie

    Hi! I need your help! I have a html file with a flash movie-menu embedded into it. I'd like one of the buttons to open an external html page strictly in a new maximized window. It does not matter if the new window has toolbar or not. I want it to ope