Which MAC OS can run 1.5 compiled java app?

from the apple website, the latest version of jre is Java 2 SE 5.0 Release 3
but it's only limited to Mac OS X 10.4.2 or later.
can any other earlier version of MAC OS run 1.5 compiled java app?
would apple develop 1.5 for the earlier MAC OS system?
thank you.

No. If you don't see it available in the Software Updates, it's not possible.
-Alexis

Similar Messages

  • HT1349 I need a mac that can run adobe flash. Is that possible?

    I need a MAC that can run adobe flash.  Is that possible?

    All you need to go is go to Adobe.com, download and install it. You will need your admin password but yes they all support it.

  • Which Mac computers can boot into Mac OS 9?

    Hi,
    I'm interested in owning a computer which allows me to boot and work in Mac OS 9. I'm aware of the Mac OS X Classic environment, but am really interested in booting in 9. As a secondary consideration, I also want one which can run Mac OS 10.3.9. Which models allow this? Is there a tech. spec. sheet on Apple's website? Newer, Mac OS X-supporting models preferred.
    Thanks!

    I have the dual 1GHz MDD, OS9 loves it.
    There's also PowerBook G4's. You'll want a Titanium PBG4. As a rule, Titanium PBG4's are OS9 bootable, and Aluminium PBG4's are OSX boot only. They're easily identified, Titaniums have all the ports on the back, Aluminiums have the ports down both sides. The Titanium PowerBook G4's topped out at 1GHz. Be careful, there are Alumnium PBG4's at 1GHz (remember, you want ports on the back, not the side).
    There's also some G4 iMacs and eMacs, both fast under OS9 and OSX 10.3, but if you tried Tiger or Leopard on them things might start to slow down. Others, who own these macs, might be able to clarify.
    I've been waiting 6 weeks for my new Mac Pro to replace my MDD. Unfortunately, I'm not selling it. It's SO good, I'm keeping it as a web server, file server and iTunes server. So get the MDD if you can.

  • Which tablet/s can run executables created in LabVIEW 8.5?

    Background: I have created a VI that acquires data over bluetooth from a specific DAQ device. The VI is created in Windows 7 and LV 8.5. The VI is tested to work on the development machine. I'd like end users to be able to install and run an executable version of this VI from a tablet that has bluetooth capability.
    Question:  Which tablets can run executables created in LabVIEW 8.5? I think tablets running Windows 8.1, such as Surface Pro and Dell Venue Pro, should be okay but need a confirmation before I purchase one. Also, how about tablets that run other operating systems, such as Windows RT or Android?
    Extended Question: What tablets in the market can run LabVIEW 8.5 VIs (or in other words allow LabVIEW 8.5 to be installed)?
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

    Well since LabVIEW 8.5 isn't officially supported on Windows 7, or 8 you may have issues.
    http://digital.ni.com/public.nsf/allkb/B972242574D4BB99862575A7007520CB
    Of course many on the forums have stated being able to run older versions of LabVIEW on new operating systems without issue but know that from NI's perspective you should not be running LabVIEW 8.5 on Windows 7.  Which means no modern tablet.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Which Apple computers can run Photoshop CS 6 Extended?

    I'm buying a new computer, but I need one that can run Photoshop CS 6 Extended with the video and storyboard features. My 2011 Macbook Pro 13' without discrete graphics was not able to, but my mid 2010 Macbook Pro 15' was. I want to make sure that my new computer would be able to run the program. Can somebody help me? Is the new Macbook Air (or the one from last year) okay? What about the Macbook Retina 13' or 15'? Thank you so much!

    yuechen,
    this Adobe page lists the system requirements for Photoshop CS 6 Extended. It looks as though VRAM might have been the stumbling block for your 13-inch MacBook Pro; do you know how much RAM was installed in it? Apparently Photoshop CS 6 Extended requires 512 MB of VRAM, and your 13-inch MacBook Pro would only allocate 512 MB to its integrated graphics if it had at least 8 GB of RAM installed. If VRAM was the stumbling block, then a Mid 2013 or Early 2014 MacBook Air with 8 GB of RAM would definitely have enough graphics memory allocated. (I don’t know if one with 4 GB of RAM would have enough; it might.) Similarly, an Early 2013 or Late 2013 MacBook Pro with at least 8 GB of RAM would meet the graphics memory requirement; I don’t know if one with 4 GB would or not.

  • 64bit why can't you just compile 32bit apps into 64bit

    The only changes that I know right now between 64bit and 32bit is the length on an int and long. Can someone please explain to me why they can't just re-compile the code as 64bit?

    Who's 'they'?
    Lots of code implicitly assumes within the code itself that pointers are a certain size. The code that's relatively better written and doesn't assume things like that works just fine with a recompile. You can't recompile Skype, though, since there's no source code available.
    Last edited by ngoonee (2009-09-03 05:36:35)

  • How to run a makefile from java app?

    Hi,
    I want to run a make command the first time my java swing application is run. The makefile is in a directory that the application is using for input files. Do I need to write a script to house the make command or is there another way to run make?
    Thanks

    Thanks for that but I'm not actually trying to build a makefile for my java app - I just want to be able to run one that is going to generate a bunch of html files for my application to access. The make command works great from the command line but I can't just put a directory followed by "make html" in a string and run it using runtime.exec in my application.

  • Run PHP script in Java app.

    Hi,
    I have a PHP application that opens up a template (MS Word) invoice file, inserts some information in the file (eg. today's date, customer name) and then saves it as a new Word file. My questions are as follows.
    1- How can I call this script from my Java application. Please note that I want to be able to pass parameters (eg. custome name read from a DB) from my Java app. to this script.
    2- Is it possible to print already saved MS Word documents from Java? If so, how?
    3- Is it possible to do what my PHP script is doing in pure Java? I couldn't find a simple way of doing this, that's why I used PHP but I would like to do this in Java if I can.
    thanks in advance,
    Mete

    I have a PHP application that opens up a template (MS
    Word) invoice file, inserts some information in the
    file (eg. today's date, customer name) and then saves
    it as a new Word file. My questions are as follows.
    1- How can I call this script from my Java
    application. Please note that I want to be able to
    pass parameters (eg. custome name read from a DB) from
    my Java app. to this script.You would have to call the PHP interpreter through Runtime.exec(), I believe. I haven't done anything with it, but you would have to build the command that would normally be typed on the command line as a string and pass it to Runtime.exec().
    2- Is it possible to print already saved MS Word
    documents from Java? If so, how?Try looking at the Jakarta POI project.
    3- Is it possible to do what my PHP script is doing in
    pure Java? I couldn't find a simple way of doing this,
    that's why I used PHP but I would like to do this in
    Java if I can.Same as 2.

  • Running PHP script from Java apps

    Hi,
    I have a PHP application that opens up a template (MS Word) invoice file, inserts some information in the file (eg. today's date, customer name) and then saves it as a new Word file. My questions are as follows.
    1- How can I call this script from my Java application. Please not that I want to be able to pass parameters (eg. custome name read from a DB) from my Java app. to this script.
    2- Is it possible to print already saved MS Word documents from Java? If so, how?
    3- Is it possible to do what my PHP script is doing in pure Java? I couldn't find a simple way of doing this, that's why I used PHP but I would like to do this in Java if I can.
    thanks in advance,
    Mete

    Don't reply here. Go here instead.
    http://forum.java.sun.com/thread.jsp?forum=54&thread=479160&tstart=0&trange=15
    Cross-listed
    Sorry, I thought this didn't post before.

  • Any body knows if my Old Mac Pro can run Osx 10.5 or higher?

    Hi
    First time here, I have a mac Pro with the following especifications runing Tiger 10.4.11 at the moment
      Model Name:
    Mac Pro
      Model Identifier:
    MacPro1,1
      Processor Name:
    Dual-Core Intel Xeon
      Processor Speed:
    2.66 GHz
      Number Of Processors:
    2
      Total Number Of Cores:
    4
      L2 Cache (per processor):
    4 MB
      Memory:
    5 GB
      Bus Speed:
    1.33 GHz
      Boot ROM Version:
    MP11.005C.B08
      SMC Version:
    1.7f10
      Serial Number:
    G8******UQ2
    My question is, is this machine capable to be actualizaed to Mac Os 10.5 or higher?
    Thanks in advance for any help
    Mario
    <Edited By Host>

    It will run through Lion. You can purchase the Snow Leopard DVD - $29.00 from Apple's Online Store, update it to 10.6.8 then use the App Store to purchase and download Lion - $30.00. Or you can visit a local Apple Store and purchase the USB Lion Flash Drive installer for $69.00.
    Regardless of which you choose to do you will have to initially erase your drive to make a clean install, so be sure you have a reliable backup before you do anything.
    For future reference you should not post serial numbers or any personal information in these open forums.

  • Which later IMacs can run Snow Leopard?

    I am planning on getting a new (or refurbished) 27 inch IMac soon, to replace an older Mac. Problem is, I will need to dual boot between Snow Leopard, and Lion, because I must still use Quicken. I assume if I pick a 2010 IMac, it will still run Snow Leopard. However, if I decide to get the newest IMac, will it still boot with Snow Leopard? I'm wondering if the i5 and i7 chips will boot the old system.

    It totally depends on what the firmware is set up to work with. Any iMac issued before July should dual boot. If I had to do it, I'd get a refurb one that's guaranteed to boot w/SL. If the seller can't guarantee that, don't buy it.

  • What can I do on a PC which Mac's can't?

    I'm thinking of getting a Mac Mini (the only one I can afford xD) because our laptop's given up on life, but since this is basically a decision based on using a Mac in the Apple store and liking the design, I figured I should get more information. I'm not a computer person xD
    What can PCs do that Macs can't? Is there anything that the Mac would be unable to do which I can already do on a PC? Apparently, I'd be unable to talk to somebody on something like MSN who was using a PC whilst I was on a Mac - is this true? And is there any common software on a PC which the Mac would be unable to handle?
    Basically, just what are the drawbacks from switching from a PC to a Mac?
    Thank you

    The major drawback in switching is having to learn a new operating system. This is the biggest obstacle facing switchers. You can pretty much do anything on a mac that you can do on a pc and vice versa. It all comes down to which one you like using.
    You can use MSN messenger on the mac(www.microsoft.com/mac/downloads) and talk to anyone on the messenger service. There are also other IM programs that allow you to sign into yahoo, messenger, aol, etc. at the same time.

  • From mac mail,  I can send but not receive mail. Also, on the same mac, I can run mail through Entourage and no issues with sending or receiving

    only found this problem with mac mail , when new hard drive waqs installed!!
    i CAN SEND from mac mail
    When I first set it up, i could receive mail but not send and now its the other way around
    I cannot receive mail.
    However, under Entourage mail, i have not problems with similar settings!!
    Can you help, this is wrecking my head!!

    What do you see if you invoke Mail's menu option Window > Connection Doctor?

  • Which EEM cmd can run command on an interface all Friday at 10 h pm?

    Hi all,
    I'm looking to write an EEM cli command that allow me to run a conmmande (ip access group 130 in) on one interface all Friday at 10 pm?
    How can I write this?
    Thanks.

    This should do it for you.
    event manager applet apply-acl event timer cron cron-entry "0 22 * * 5" action 1.0 cli command "enable" action 2.0 cli command "config t" action 3.0 cli command "interface gi0/0" action 4.0 cli command "ip access-group 130 in" action 5.0 cli command "end"

  • In which situation we can run f.13 and F.19

    hi Friends,
    I am little bit confused about when we should use for clearing of GR/IR account.
    F.13
    F.19
    What are the situations to used these transaction codes.
    Please help...me
    Regards,
    suresh

    i resolved myself...

Maybe you are looking for