Will not load, says file path not valid

Even had a tech try to take control but couldn't get Lightroom to open from exe

I found the solution, I am running windows 7 64 bit os, and I had to down grade the java plug in to 1.4.2_17 and I have to launch the asdm in ie 32 bit it can be ie8 or 9, but it has to be 32 bit. feels good.

Similar Messages

  • Getting a runtime exception saying file/path not found

    Hey, I'm pretty new to Java, or programming, and I'm trying to make this program work which asks the user for a file that stores transactions made using their creditcard and then posts a statement, but when i run the program, I get an error saying that the file/path was not found even though, the file is saved in the same directory as the public class, and my second problem is that i have to get the program to read the code, which is the first token in the loop as upper or lower case, i.e. that it is case-insensitive...any help would be greatly appreciated...
    import type.lang.*;
    import type.lib.*;
    import java.util.StringTokenizer;
    public class Check07A
    {     public static void main (String [] args)
         {     IO.println ("Enter name, limit, and trx filename (comma-delimited): ");
              String entry = IO.readLine();
              StringTokenizer st = new StringTokenizer(entry, ",");
              String name = st.nextToken();
              IO.println (name);
              double limit = Double.parseDouble(st.nextToken());
              IO.println (limit);
              int num = 3456;
              CreditCard visa = new CreditCard(num, name, limit);
              String file = st.nextToken();
              IO.println (file);
              UniReader ur = new UniReader(file);
              for (String code = ur.readLine(); !ur.eof(); code = ur.readLine())
              int amount1 = ur.readInt();
              IO.print(code);
              IO.print(amount1);
              StringTokenizer test = new StringTokenizer(file,"");
                   while (test.hasMoreTokens())
    {IO.println(test.nextToken());
                   code = test.nextToken();
                   IO.println(code, "5Z");
                   String amount = test.nextToken();
                   if (amount1 > limit)
                   {IO.println(amount1, "10.2");
                   IO.println("rejected.");
                   else
                   {IO.println(amount1, "10.2");
                   IO.println("done.");
                        ur.close();
    }     

    ummm - I think this must be something like:
    http://www.cs.yorku.ca/java/api/type/api/type/lang/package-summary.html
    right?

  • CS6 Premiere Pro file not opening, saying file is not supported

    I have been working on a video piece and when I tried to open it recently to continue editing it, it said there was an error importing and that my file was not supported. When the file opened all the film didn't show up and was replaced by 'media pending' or something along those lines.
    I don't know how to fix this as there is no reason the files should be incompatible as I haven't changed them from their original Premiere Pro files.
    Does anyone have a solution?

    Try this:
    FAQ: Why are some codecs and sequence presets missing from my installation of Premiere Pro?

  • Reader will not load pdf files

    my adobe reader will not load pdf files. I tried un-installing and re-downloading the reader. same thing it won't work. It works on my other computer

    The operating system is Windows 7. I get error message "there is no email program to perform the requested action". I get same error for local C: drive, jump drive, online firefox or microsoft browser. same problem.
    I fixed the problem by un-installing adobe xi and re-downloading adobe x. Its working great. adobe xi may work OK on windows 8. I have a laptop with Windows 8. I will be trying that tomorrow. I will send you a message.
    Lightman6770

  • "error loading media-file could not be played"-when viewing webcams

    When trying to load a webcam, picture loads but will not stream.
    The following error message appears "error loading media-file could not be played"
    Everything functions when using Google Chrome.
    Any help would be much appreciated. The operating system is Vista.

    Thank you for you reply - much appreciated.
    I am a bit confused - if I do not have a player installed, how come that everything is OK when I use Google Chrome as a browser?
    Many thanks,
    Jimmy

  • When I have finished working on an image in Photoshop and I hit the save button it goes instead to the "save as" screen. This never happened in previous Photoshop versions. When I get to Lightroom, I have a grey screen the says "File could not be found."

    When I have finished working on an image in Photoshop and I hit the "save" button, it goes instead to the "save as" screen. This never happened in previous Photoshop versions. When I get to Lightroom, I have a grey screen the says "File could not be found." I then have to go to "locate" to get the image. When I select the correct image, I get a message that it is not the same file name but I am eventually able to access the image. Needless to say this is having a negative impact on workflow!

    The problem with write permissions for the OneDrive folder only shows up in Lightroom 6's export dialogue, that's why it's to irritating. Lightroom 5.7.1 is not having that problem nor does the file explorer. The problem also exists on both of my machines. I will try to check for other problems with the OneDrive troubleshooter though: Running the OneDrive troubleshooter - Windows Help   

  • 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

  • Newbie: could not load keystore file (password may be incorrect)

    I'm getting the error in the subject.
    Here's the command I used to sign it:
    adt -certificate -cn mycertificate 1024-RSA mycertificatefile.p12 ps
    Here's what I do next:
    adt -package -storetype pkcs12 -keystore mycertificatefile.p12 myTest.air myTest.xml myTest.html
    I then use the password "ps" when it asks for the password.  This is what it spits back to me.
    password: ps
    could not load keystore file (password may be incorrect)
    usage:
      adt -checkstore SIGNING_OPTIONS
      adt -certificate -cn <name> ( -ou <org-unit> )? ( -o <org-name> )? ( -c <country> )? <key-type> <pfx-file> <password>
      adt -help
      adt -migrate SIGNING_OTIONS <air-file-in> <air-file-out>
      adt -package SIGNING_OPTIONS <air-file> <app-desc> FILE_ARGS
      adt -prepare <airi-file> <app-desc> FILE_ARGS
      adt -sign SIGNING_OPTIONS <airi-file> <air-file>
      adt -version
    SIGNING_OPTIONS: -storetype <type> ( -keystore <store> )? ( -storepass <pass> )? ( -keypass <pass> )? ( -providerName <name> )? ( -tsa <url> )?
    FILE_ARGS: <fileOrDir>* (( -C <dir> <fileOrDir>+ ) | ( -e <file> <path> ))*
    I do indeed have myTest.xml and myTest.html files in the folder I'm running this in.
    Any suggestions as to how I might be able to fix this and proceed, would be highly appreciated. Thanks.
    Jason

    I had the same problems but when I executed the adt commands from bin-debug folder it works....

  • JDEV 10.1.3  XML Editor does not load XML file

    I am trying to edit a large (300MB+) xml file with JDEV 10.1.3 running on a Windows XP Pro workstation with a 2.8 ghz processor and 1GB of memory. The XML file has application data in it. The file loads just fine into the Oracle database using the XML Developer's toolkit so I don't thing there is anything wrong with the XML.
    I'm finding that the XML editor does not load the file. Many minutes elapse, then JDEV appears to simply give up - JDEV is no longer busy. There's no XML data to edit - that window is empty. There are no error messages displayed.
    I'm new to JDEV so I need to know if there is an error log file I should examine.
    BTW, other XML editors (XML Spy, Stylus Studio, etc) simply run out of memory and lock up the machine - it appears they are tryign to convert the XML file contents into 32-bit unicode in memory, build a list of pointers to impose a DOM-like structure, and then load their editor.

    Do you really want to manually edit the 300MB file? how much scrolling will you need to do to get to the last row?
    In any case it is likely that JDeveloper also runs out of memory - you can try running the [jdev-root]\jdev\bin\jdev.exe file and see if you get any error message in the log window.

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

  • I have created a data module in s1000d application of framemaker 10.While publishing it in publication module it says"File does not exist".

    1- I have created a data module in s1000d application of framemaker 10.While publishing it in publication module it says”File does not exist”.
    2- Does FrameMaker 10 supports s1000d 4.1 ?

    See Lorna...it's almost second nature to you now,
    editing those js files! I TOLD you you could do it!
    Mark, it's EERIE that you should say this to me today because this is exactly what I have been thinking! I can put a song on a page with one eye shut now, and I can zip around those files pretty well (except for the recent fiasco where I didn't even look at the right folder). I also notice that the level of my writing is sounding more technical and familiar with digital world jargon. I remember how you told me I could do it, and you were right. You all were right and I feel more knowledgeable and at a point where I suspect that I can take steps on my own. HTML is a strange land, but just being able to edit that .js file and FIND it by navigating for it in Text Edit has made me feel much more competent.
    Before iWeb I didn't realize what Text Edit was for. I used it to take quick fast short notes. I never understood that concept of "opening something up in so and so application." The first time I clicked OPEN in Text Edit, and I saw all those danged files staring at me with beady eyes, I wanted to throw a white hanky and run for the hills. Not any more!
    Lorna in Southern California

  • Moved iTunes library to an ext hard drive to make space on my int drive... Followed steps from apple.  Now I cannot access my music... It says: "File could not be used because the original file cannot be found.  Would you like to locate it?"

    Moved iTunes library to an ext hard drive to make space on my int drive... Followed steps from apple.  Now I cannot access my music... It says: "File could not be used because the original file cannot be found.  Would you like to locate it?"
    I moved my iTunes library to my external hard drive some time ago and I followed the directions listed here on the apple support page.  It did copy my library and now is on my hard drive... I can open iTunes and use it to sync all of my devices but I would like to play my music... I can see all of my music files but can not play them if I click on an album or song it says the following:  "(file name) could not be used because the original file cannot be found.  Would you like to locate it?"  I click locate but do not know where to go from there?  I need a way to access all files and not to hunt down one at a time on my hard drive... I am pretty sure I deleted the original library to make space on my internal drive which was the reason for moving it.  I have tried and tried to fix it and do not have a lot of time to do so with a one and two year old at my house who do not like it whenI sit down at my computer.  What to do???  Any help is much appreciated!!!

    See Make a split library portable. Move all of the bits of the library together in the the correct shape and it should work. Or undo exactly what you did and then start over.
    If you're a former Windows user don't try merging two folders together that have the same name by dropping one into the same folders as the other, as that goes badly on a Mac.
    tt2

  • Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized.

    Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized. I see how to do it one at a time with the "download" button in Dropbox but that's so cumbersome for lots of photos.

    Have you tried these avenues?
    Contact us - Dropbox
    Dropbox Help Center
    Dropbox Forums
    Submit a help request - Dropbox
    OT

  • I upgraded my old mac to snow lepord and now when i try to play music in my i tunes it says "file can not be located" but it still lists all of my music

    I upgraded my old mac to snow lepord and now when i try to play music in my i tunes it says "file can not be located" but it still lists all of my music

    Use Spotlight Search (the magnifying glass on the top right-hand corner of your menu bar) to locate your music files. Then point iTunes to those files.

  • SQL Server 2012 Express - Could not load the file or assembly 'Microsoft.VisualStudio.OLE.Interop

    Windows 7 Home Premium, SP1
    64-bit
    I just installed SQL Server 2012 express - Express with Advanced Services (contains the database engine, Express Tools, Reporting Services, and Full Text Search),
    file name -  SQLEXPRADV_x64_ENU.
    Opening SQL Server Management Studio causes the error -
    "Could not load the file or assembly 'Microsoft.VisualStudio.OLE.Interop,
    Version=7.1.40304.0, Culture=neutral,
    PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The
    system cannot find the file specified."
    Do I need to install another file? Did I download the wrong version?
    Any suggestions? Thanks for any help.

    Hello,
    The issue may occure when the installation of your SQL Server is not a complete or a successful one. Did you try to repair or reinstall the SQL Server Express?  You can also try to install
    Service Pack 1 for SQL Server 2012
    to check if the issue presists.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

Maybe you are looking for