Installing JavaTM 2 SDK, Standard Edition, v 1.4 Beta 3 (SDK) on a Mac

I have downloaded JavaTM 2 SDK, Standard Edition, v 1.4 Beta 3 (SDK) for Linux [I hope that's the correct version for a Mac] about 5 times, but each time, I can't open the file, athough the file's size shows that it did download. Help!

I have downloaded JavaTM 2 SDK, Standard Edition, v
1.4 Beta 3 (SDK) for Linux [I hope that's the correct
version for a Mac] about 5 times, but each time, I
can't open the file, athough the file's size shows
that it did download. Help!It is not the correct version. That is for Intel Linux systems. You need to wait until Apple or someone ports 1.4 to the Apple OS X.
Chuck

Similar Messages

  • RC4 and JavaTM 2 SDK, Standard Edition , v1.4

    Hello,
    I am new to Java Cryptography and wanted to find out if the new
    JavaTM 2 SDK, Standard Edition , v1.4 includes the 128 bit RC4 algorithm or do we need to download the RSA Security, Inc. JCE 1.2.1 compliant provider?
    Need information fast! Thanks.

    yes but it's really JCE 1.2.2 in v1.4
    http://java.sun.com/products/jce/index-14.html

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Install Oracle 9i Standard Edition on Linux AS 2.1

    I have installed Oracle 9i R2(9.2.0) Standard Edition on Red Hat Linux AS 2.1
    When I checked the version:
    Select * from V$Version the result was :
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    I don't understand what happened , why in V$Version not appear Standard Edition which I have installed?
    Thank you very much,
    Sorin

    Please, see your logs in ./OraInventory/logs/InstallActions...log
    At the end of this documents, you can see extended info about your that error.
    Paste this info here, if you can´t see a solution.

  • Installing Oracle 11gR2 Standard Edition on WINDOWS Server 2008R2 with ASM

    Hi,
    I want to setup Oracle 11g DB (11.2.0.2) Standard Edition on Windows Server 2008R2 x64 bit with ASM Instance. I would appreciate if you could suggest me with the following little but important questions.
    The following link from Oracle doesnt have 11.2.0.2 db version for windows x64 bit. Do a patch (which I think is a complete installation) is needed to install after installing 11.2.0.1? or I can directly install 11.2.0.2?
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Secondly, I have no such experience regarding installing and setting up ASM Instance on windows. How many disks or etc is needed for ASM (as ASM disks). One of the admin guy said, he has 6 disks (2 for OS and 6 you can use for Oracle or ASM so so). Could you please suggest, how should I divide the disk partitions of what should I say no idea :(
    Also, do ASM instance (diskgroups,disks) should be setup before creating DB (through dbca?)
    I was thinking like:
    - Installing Oracle software
    - Creating ASM disks,diskgroups,instance,etc
    - Creating DB (using dbca?), isnt' it?
    Bundle of thanks in advance.
    Best Regards

    K-Saf wrote:
    Hi,
    I want to setup Oracle 11g DB (11.2.0.2) Standard Edition on Windows Server 2008R2 x64 bit with ASM Instance. I would appreciate if you could suggest me with the following little but important questions.
    The following link from Oracle doesnt have 11.2.0.2 db version for windows x64 bit. Do a patch (which I think is a complete installation) is needed to install after installing 11.2.0.1? or I can directly install 11.2.0.2?
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Secondly, I have no such experience regarding installing and setting up ASM Instance on windows. How many disks or etc is needed for ASM (as ASM disks). One of the admin guy said, he has 6 disks (2 for OS and 6 you can use for Oracle or ASM so so). Could you please suggest, how should I divide the disk partitions of what should I say no idea :(
    Also, do ASM instance (diskgroups,disks) should be setup before creating DB (through dbca?)
    I was thinking like:
    - Installing Oracle software
    - Creating ASM disks,diskgroups,instance,etc
    - Creating DB (using dbca?), isnt' it?
    Bundle of thanks in advance.
    Best Regards-You should create ASM
    -After this you could be able to create DB

  • Install Flash builder standard edition

    I have a new laptop and ik want to install Flash builder standard adition but I can not find the standard adition only the premium one. How do i get the standard edition?

    Hi,
    Try and use this link.
    Adobe - Adobe Flex Support Center
    Thank You
    Arjun

  • Unable to install Java 2 Standard Edition (J2SE) 5.0 Release 4

    After Downloading Java 2 Standard Edition (J2SE) 5.0 Release 4
    my desktop computer won't recognize the .dmg formatt and this is the messege i get: The following image/disk failed to mount j2Se50Relese4.dmg i have MAC OSX 10.4.6 on a Dual 2 Ghz PowerPC G5. I also have StuffIT expander and it won't recognize it either.

    Actually. No, all the problems i've been having has happened with any java downloads with the .dmg formatt all other applications where succefully unstuff.
    Your answer is unclear. Can you mount other disk images by double-clicking on their .dmg files? Have you repaired permissions with Disk Utility?
    I wonder if it has something to be with the versions of the upgrade. do i need to download them in an expecific order or something?
    It depends. Some updates won't be applicable until you install a previous one. For example, some Security Updates won't work unless you an OS update in place.
    i currently have install java 1.3.1 plug in and 1.4.2 plug in. i've never open the application thought.
    If you mean the Java Plugin Settings.apps for those versions, then that's normal. I have those in addition to the Java Preferences.app from J2SE 5, which I believe is the new name for the settings.app.

  • Downloading/installing Java(TM) 2 SDK, Standard Edition 1.4.0_02

    Hope someone can help... after I download, I click on the exe file and it defaults to install on my C: drive.. unfortunately, this is my work laptop and there is not enough room on my C: drive... I do not see a way to change the setting to install it on my D: drive. Thanks, PP

    I download it onto my d: drive and it downloads the
    j2sdk-1_4_1-windows-i586.exe file.. onto my D: drive
    When I double click the exe to install, it does not ask me for a directory.. Install Shield Wizard extracts the files then a msgbox pops up and states:
    There is not enough space on the C:\ Drive to extract this package
    Please free up 36.58 MB and Retry
    Well I don't have 36.58 MB to free up and the only options it gives me is retry or cancel.... I saw in another forum that this has happened before, but the person said he found a solution elsewhere, but did not state what that solution was....
    Please Help! Thanks, PP

  • Java 2 SDK, Standard Edition v. 1.4

    how do u completely install this version, just so i could get javac running cause its not running when i type it command prompt. i have win2k pro, and im very new with computers

    Once you download the software, install (extract) it to a local directory and then set the PATH and CLASSPATH variables.
    If you donot set the path variable, your system will not recognize javac or java commands
    To set the Path variable:
    1.right click on "My Computer" on your desktop and then click on properties.
    2. select the advanced tab
    3. click on the "Environment Variables" button.
    4. under "System variables" scroll down and select PATH and click edit.
    5. at the end ( or begning) add c:\<java installation root directory>\bin;c:\<java installation root directory>\lib;
    6. click on and then ok.
    This will make your system recognize teh javac and java commands.
    To add the class path click on "New" under System Variables" and then add the following
    Variable Name : CLASSPATH
    Variable Value : c:\j2sdk1.4.1\lib\dt.jar;c:\j2sdk1.4.1\lib\htmlconverter.jar;c:\j2sdk1.4.1\lib\tools.jar;c:\j2sdk1.4.1\src.zip;
    I installed java into j2sdk1.4.1 directory , if your directory name is different, change it. Also if you donot have src.zip and intsead you have src.jar change it in the above CLASSPATH
    Venkat

  • JavaTM 2 Standard Edition, version 1.4.0

    I have made the mistake of installing Java 1.4.0-b92 on my WindowsNT machine.
    Now none of my homespun Java applications work very well.
    1) It is much slower even when it will work.
    2) It looks as if it is taking its time before deciding what to do next.
    3) Cut and paste is erratic and spotty. (Sometimes it works, other times it won't).
    4) Drag and drop does not work at all. (This was expected).
    5) The surprise is that where drag and drop now works natively (like in JLists) it is an append at the end of the current entry rather than on a new entry.
    6) I have not digested the new Focus revamp yet.
    On the plus side I very much like the new file chooser.
    Comments please.
    Thanks.
    Andre

    I've been using java 1.4 since its early beta's. (It has come a long way) I will try to address your concerns... well.. some of them anyway.
    1.) Saddly the -client VM is the default for the final release (b92) on windows. (The solaris VM has -server as the default) Try using the -server switch on the VM. It should cause a noticable speed up as the cost of a bit of load time.
    2.) -server might help
    3.) Never seen this, (haven't done windows much though)
    4.) I wrote my original D&D in 1.4.. I was lucky.
    5.) I'll take a look at this.. there should be a work around.
    6.) Can you post the differences you noticed?
    Yeah... the file chooser is much better... several bugs fixed too.

  • Install Oracle BI Standard edition I (OBISE I)

    Hi,
    I have downloaded this Oracle BI setup file. I have my oracle database on my machine. In which folder am i supposed to install this Oracle BI. What do i need to configure after the installation to connect it to my database. ? Do i need to add script to the tnsnames.ora? asusual??
    Please let me know..

    Oracle BI is completly independent of Oracle Database. You can install it anywhere, the one folder you shouldn't is ORACLE_HOME. You can connect through OBI to any database, you don't have to use Oracle. If you want to connect to Oracle server installed on same machine on which you've installed OBI you will be still using Oracle Client to create native Oracle connection. Just configure network service (using Network Configuration Assistant (netca) or Network Manager(netmgr)) and start listener

  • Installing Standard Edition wih RAC

    Hi@all,
    actually I'm trying to install Oracle Database Standard Edition 12c (12.1.0.2) with RAC Option on a two nodes Cluster. Both machines are running on Oracle Linux 7 and Oracle Clusterware / GI 12c (12.1.0.2) is also installed. What makes me confused is, that I can't select the Standard Edition. But why? I think, RAC Option is also available in Standard Edition. And no, I didn't select Rac One Node Option, I know, that is just for Enterprise Edition.
    Thanks a lot and regards,
    Dave

    OK, thanks a lot for your answers, here are mine to that:
    - we've just 2 CPU's in each node of the Cluster
    - On the page Oracle Database Software Downloads | Oracle Technology Network | Oracle I just get the Enterprise Edition for 12.1.0.2. I think, the Standard Edition will be available on OTN or so for 12.1.0.2? Are the Editions now splitted with the installers for 12.1.0.2?
    - Which Options should I've select on the before screens which will exclude the Standard Edition? The first screens before that where you can decide over the Editions are: The Support Screen => I've entered no mail address, "Installation Option" => Install database software only, "Grid Installation Options" => Oracle Real Application Clusters database installation, "Select List of Nodes" => I've selected my two nodes, Language ?=> english. And that's all. Which of these options would exclude Standard Edition?
    Thanks a lot and Regards,
    Dave

  • Ora-12560 while installing 10g standard edition tns protocol adaptor error

    hi all ,
    while i am installing oracle database standard edition on my windows xp , i got this error
    ora-12560 tns protocol adaptor error , when i got to the step of
    configuration assistants .
    -oracle net configuration assistant succeeded , but
    oracle database configuration assistant failed unfortunately !!
    please help me rapidly , i left the installer on that step until you answer me ,
    thanks in advance

    semsem wrote:
    hi all ,
    while i am installing oracle database standard edition on my windows xp , i got this error
    ora-12560 tns protocol adaptor error , when i got to the step of
    configuration assistants .
    -oracle net configuration assistant succeeded , but
    oracle database configuration assistant failed unfortunately !!
    please help me rapidly , i left the installer on that step until you answer me ,
    thanks in advance1) V10 is obsoleted & unsupported
    2) I bet that you did not follow Installation Guide & complete all prerequisites.
    3) SQL*Net is not required to manage, start, or use local Oracle DB

  • Help using Oracle BI Standard Edition One

    Hi,
    I have installed Oracle BI Standard Edition One on a Windows Server 2003.
    My aim is to connect to the production database and create reports, graphs etc.
    Could you please let me know the steps required?
    Thanks & Regards,
    Shailaja

    Check documentation at http://download.oracle.com/docs/cd/E10352_01/doc/nav/portal_1.htm
    Business Intelligence Standard Edition One Tutorial

  • Downgrade enterprise edition to Standard Edition One

    I downloaded database 11g for solaris intending to install standard edition one.
    During the install I did not see any options for the edition, and installed enterprise edition. I then deinstalled enterprise edition options but the database banner is still indicating it is enterprise edition. Is it possible to downgrade to standard edition one ? Where should I have selected the edition during the install ?

    The Standard Edition One install is assumed to be the same as the Standard Edition install since it contains the same features. You are on your honour to not enable the RAC capability or to install it on a machine capable of more than 2 CPU sockets. You should have seen the option to install Standard Edition.
    See metalink note 139642.1

Maybe you are looking for

  • Dreamweaver Template use and Seo

    Hi, I am using dreamweaver templates for my online java training website http://www.javatutoronline.com . My doubt is will using dreamweaver template positively or negatively affect seo for my website.

  • Setting values in Drop down list in Screen Painter

    Hello Freinds, I have the requirement as, I have drop down list in screen painter and want to fill the values in that list using database table. So using foreign key table I have updated the values in the list. But now client wants me to fill the dro

  • ITunes Accounts - 1 account for multiple iPads?  Best Practices?

    I'm setting up a small deployment of 5 iPads for use in my company.  Could anyone share some tips / best practices as far as iTunes accounts are concerned? We would like to use one iTunes account to activate all of the iPads and set up / link to each

  • Adding NWDI into existing J2EE web instance

    Hi Expect,     I have an running J2EE web server while i want to add NWDI compoents into it. I know how to done it start from scatch (i.e select the NWDI option using installation master). However, i don't know how to add NWDI into an existing J2EE i

  • Macbook pro - no audio - no option for internal speakers in sound prefs.

    No audio will play from my 2011 macbook pro. It is fully updated. In sound preferences, there is no 'internal speakers' option to select in output, and no 'internal microphone' in input. No red light in headphone jack. Any solutions?