Where's the class files? Why the "installer" nonsense?

Why do I have to download a big fat Windows installer executable just to get the 1.4.2 classes? I don't have admin access to my office PC and simply want to import the newer classes into my JBuilder projects. Why all the hoops and unwanted extras?

Answering this in the (more widely read) Java Programming forum.

Similar Messages

  • Where's the installer when I download premiere elements?

    I've tried downloading premiere elements 12 four times and never get an installer.
    I've tried using a different broswers and allowed pop ups like the adobe website suggests.
    Where's the installer??

    PaulHannah
    What computer operating system is involved?
    Let us cut to the core of the matter. From where are you downloading Premiere Elements 12...I would assume that this is not the tryout since it is no longer available from Adobe since it has released a new version 13 which should be the only tryout that it is making available at this time.
    Are you downloading another set of installation files from "My Orders" at Adobe or from another web site? If so, then you would be dealing with two
    files, one with an .exe file extension and the other with a .7z file extension. You DO NOT attempt to unzip these files.
    1. Make sure that you have disabled the antivirus and firewall(s) beforehand.
    2. First, double click the.exe (Adobe Application Manager) and then run it. When that is completed, then it is time to double click the .7z file (your main program file) to start the process of getting the Adobe Premiere Elements 12 Folder saved to your computer.
    3. At the end of this process, you will have an Adobe Premiere Elements 12 Folder at the computer location that you designated.
    4. You open that folder, and find the setup.exe that you double click to get the program installed on your computer.
    Just make sure that the installation files that you are using were selected for the operating system you are using.
    More details to follow if necessary.
    We will be watching for your progress.
    Thank you.
    ATR.

  • Where do the installer files go???

    I have a laptop and a Mac Pro. The laptop travels to the office and other locations where I have great internet access. Downloading and updating my CC apps on the laptop is not a problem. The MacPro lives at home where, for the most part, we have download speeds that are pitiful. I've been downloading CC since 4 AM. It's now noon. So far only 2 apps have installed. The connection often drops when I'm away from the machine and the App manager has to be restarted.
    So is there a way to download the latest updates as a dmg or zip file on my laptop and transfer them to the Mac Pro? Where do the installers go and are they erased after the product downloads?
    I handled all of the CS6 and earlier product downloads and updates by downloading to a thumb drive. I see no options on the new CCloud app to do that. This could be a serious problem for many users.

    Rick Gerard wrote:
    This could be a serious problem for many users.
    Indeed. I made a similar post in the CC download & install sub-forum: http://forums.adobe.com/thread/1239938
    Why should we go to something that calls itself "ProDesign Tools" for an installer? Who are they? (rhetorical; I know it's legitimate, but only because I've hung around the forums for a while).

  • Where is the installer files for Acrobat 9 Pro Extended EN,FR

    New computer, I lost my CD but have my key recorded. Where can I get the installer files for "Adobe Acrobat Pro Extened - English, Francais"???

    Hi Jesse ,
    Try this once and see it it helps .
    Go to the web page : http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=en
    Login with your Adobe ID and Password. Now instead of clicking on the download button copy and paste the following link on the address bar and hit enter : http://trials2.adobe.com/Applications/Acrobat/APRO/9/trials/AcroPro90_efg.exe
    This is the direct download link for Acrobat 9.
    This link would only work from the downloads page of Acrobat 10.
    Regards
    Sukrit Dhingra

  • Where does the installer extract its files to

    When you run the installer for thunderbird it extracts a number of files and puts them somewhere, where does it put them?
    The machines I want to install thunderbird to can only run things from certain directories (which excludes the users home directory), as a sys admin I want to be able to install thunderbird, but I cant as it appears to extract files to some directory where we cant run applications from.
    Ideally I would like to be able to move the files to somewhere where they can be run (as changing the security policy will take weeks if I am lucky).

    I have no idea, but on the start menu type %tmp% in the search or run box and press enter. Windows explorer will open in that folder.

  • Where does the installer put AIR 3.6?

    I have installed CS6 Flash Pro on my Mac Mountain Lion, and just upgraded the AIR 3.xxx
    Apparently it already had 3.5 installed, and upgraded that to 3.6
    However, the Adobe Flash directory contains a directory AIR3.2 - not 3.5 and no other. So where is the AIR3.5 and or 3.6 directories that were installed?
    Thganks

    As far as I know, Adobe Flash CS6 comes with AIR 3.2. Go to Help / Manage AIR SDK to see the paths of installed SDKs or install other versions (using the [+] button).

  • Where is the installer?

    Noob question here: Just downloaded iMovie, first download from the app store. I like to keep the installers (i.e, dmg) in one place if I ever need to recover from a crash or move to another machine, etc.
    The app store loaded the application in the applications folder, but what if I want the actual installer — Is this possible?
    TIA,
    Geoff

    Yes, I am aware that it can be downloaded again. What I would like is to be able to download the program to my desktop and have available so as to not have to wait an hour for an (75mb mb) download every time I have to re-install.
    I have a thumb drive with nothing but applications, updates and patches for Apple and other third-party applications — sure beats having to search all over the web for those things when you need to re-install or install for the first time on a clean machine and/or on multiple mac's. Not being able to have the installer with you doesn't lend itself to this workflow...

  • Problem creating package structure and where is my .class file??????

    Working on Tomcat I have my folder structure like this...
    webapps
    ->app_root
    ->WEB-INF
    ->classes
    ->src
    -> .java files
    ->META_INF
    In the command prompt i compile using this
    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\*.java
    and in my java files I have the package structure mentioned as
    package com.acme;
    after compiling i expected this to happen for me.
    webapps
    ->app_root
    ->WEB-INF
    ->classes (in WEB-INF)
    ->com (in classes)
    ->acme (in com)
    -> .class files (in acme)
    ->src (in WEB-INF)
    -> .java files(In src)
    ->META_INF
    The funiest part for me started he when i compiled the file
    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\one.java
    It compiled successfully without giving me any error but no package structure was created and THERE IS NO one.class file anywhere in my system.....Then how did it compile my file and where is the .class file.
    I think am worng somewhere but unable to locate it.
    Can somebody pull me out of thiss stuf??? Need to do it fast.
    Thanx.

    c:\Program Files\Apache Tomcat 4.0\webapps\Murthy\WEB-INF\classes>javac -d src\*.java
    The command you posted does not have a source file specification. You are telling the compiler to put the .class files in src\*.java but you are not specifying any .java files. It looks like your command should be javac -d . src\*.java

  • Where to put .class file of a servlet to run it on Tomcat 4.0

    where do i put my .class file of my servlet or maybe the .java one too in order to run it using Tomcat 4.0
    thanks in advance

    i got it by accident a while ago.. hehe
    thank you for trying to help thou :)
    ivo

  • Where is this class file located??

    In developer studio, I am getting an error when building my java project that says "The project was not built since its classpath is incomplete.  Cannot find the class file for com.sapportals.wcm.util.uri.RID.  Fix the classpath then try rebuilding this project."
    Here is the import statement:  import com.sapportals.wcm.util.uri.RID;
    I have not been able to find the jar file needed to fix this anywhere.  Does anybody know the name of the file required for this?
    Thanks for any help!

    first of all add a web dynpro reference (dc->properties)
    PORTAL:sap.com/com.sap.km.application
    second, check these links
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/5a/2e2f4234135433e10000000a155106/frameset.htm">external library dc</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/194bdc4f-0901-0010-82ba-bf73af5d5f75">external libraries</a>
    you may have to create a different dc to contain your jars.

  • Where do these class files go?

    I downloaded a library of code that I'd like to use in my program. It came packaged as some .java files and some .class files. Many of the .class files don't have corresponding .java files. I assume this is because they did not want us to see the source code. Can I still use these class files? I put them in the bin folder of my project (I'm using eclipse) but the code still can't recognize the objects from that class.
    I found this: http://stackoverflow.com/questions/661110/how-do-i-include-class-files-in-my-project-in-eclipse-java
    and I think I did correctly what they said to do. I moved the files to a new folder called lib, and then added lib to the buildpath as a class folder, but Eclipse can't find it.
    Edited by: JFactor2004 on May 19, 2010 11:06 AM

    Need to be under the folder in the package (i.e. com.org.blah....)
    You can also decompile any class file to see what are in there
    use JAD ecplise plug-in or JD (for java >5)

  • Where to put class files

    hi,
    i use Tomcat v4.0.5, my jsp files import some classes. i put these classes to /classes folder under /jakarta-tomcat-4.0.5 base directory. but when i make some changes to these classes, i have to restart the Tomcat. i think there must be some other folders to put these class files and there wont be need any more to restart Tomcat.

    Hi
    It is necessary to restart your Tomcat if you are modifying class files, because tomcat will build a cache for the previously compiled classes and objects. As you are under development this is of no harm.
    And one more thing place any classes in the WEB-INF/classes directory of your tomcat application.
    Thanks
    Swaraj

  • Where is the installation for FM11 in Adobe Application Manager?

    Just installed TCS4.0 and the application manager shows installation for 16 applications, but FM11 is not one of them. Where is this installation located?

    It's probably a separate download since it's not a Creative Suite product. Check your account's My Products section.
    Mylenium

  • Where are the installation options in TCS2 installer ?

    I have installed TCS2 and never saw a step where I can define which filters and other options I would like to have installed, just the option to install the full FM9 product. Am I missing something here ? I need to import SVG files into my documents but the import filter is apparently not installed.
    Jang

    Quote from: Xcom_Cheetah on 08-September-06, 13:09:33
    i can't find them... if its so then i will be pretty disappointed by MSI.. every lowly board has some overclocking options atleast
    as stick said, theyre no o/c options in there, even the k9n neo doesnt have them, you have to to with the platinum if you want to o/c.
    and no there is no o/c options in there, because the low-level ones, maybe theyre capable but the bios doenst allow, and i dont think there any modded bios yet.

  • WHere is the installation guide on this site??

    Ive downloaded it and installed it in that respect, but there are other things i need to adjust I think like the classpath in the autoexec thingy i think.
    Let us know if ypu where this info is on the site
    Cheers

    ive found it

Maybe you are looking for