Which JAVA program should I download?

I'm new to JAVA, can someone please tell me a good tutorial and program to create JAVA applets on?

If you're new to Java, I suggest that you start first using simple text editor like Windows Notepad or Edit.com, because it may help you familiarize the Java language. Even though it's time-consuming, its worth, you can have a strong understanding about the Java language.
You know what I�m having difficulties to say what I wanted to say because you know speaking English is my second language, so, to make it clear what I wanted to say, I will tell you a short story, so you listen...
"I have a friend (she�s new to Java and she�s studying from other college school), she's using an IDE <software and company name is hidden / protected>, and yes that IDE is absolutely help her save her time developing her java program� the program is finished� time comes� she need to package her program for defense� packaging was successful� but when she run and test her program into one of the school�s computer� her program throws a bunch of exception (<software.company.********Tracker not found>) that isn�t occur when she�s running her program on her own PC (at home). She asked for my help (15mins before defense) and� 50% of the program crippled. I found that that IDE she�s using is semi-propriety and in the end, what happen is her group is assigned for re-defense, her time is not saved it is wasted."
So be aware of the possible hidden price of time-saving routines and always be aware of what your IDE is doing under the cover. Also, your understanding might be impaired and you might feel helpless when you called on to debug your code in a computer with a minimum of tools without those cute IDE�s. Am I right? Correct me if I�m wrong. God bless you all ^_^
For tutorial, see reply by kevljo.
Thank you!

Similar Messages

  • Which Java SDK should I download? 1.3.1 or 1.4.1 or 1.4.2

    Hi all,
    newer user..
    I have always wanted to ask this.
    Which one?
    Why more than one supported?
    Is 1.3.1_8 compatible with 1.3.1_02?

    Why I asked this question is I am having trouble supporting 2 or 3 java programs that have been "compiled" under different releases.
    Cisco Works only works with M$ JVM and Suns JVM 1.3.1 (needs both) but no higher. Another program called 'something' was compiled under 1.2 and performance sucks because of something different between 1.2 and 1.3.1 .
    I wish I could recompile but that is not an option. I guess I could load 3 different JVM's but is that even possible with such a wide variety?
    Thanks for the reply.

  • I am a mobile app developer in our University. which developer program should i apply ?

    I  am a mobile app developer in our University. which developer program should i apply to distribute the develpped University app?

    How does the University want to distribute their app....to whom?
    See:
    Choosing an iOS Developer Program / Which Developer Program is for you?

  • Which Java program do I use for this game?

    Okay, I'm programming a video game for my High School grad project.
    Now, I'm just wondering, which Java program do I use for it? It will be 2-d, I'd like it to have SNES like graphics, and it will be a platformer, but kind of like Metroid. You will be able to change forms, from ice to water to a gaseous state, and you have different powers according to which form you're in, like forming an ice bridge in ice form, slipping through cracks in water form, and rising higher in a gaseous form.
    Thank you for your help.

    no, not if you did not code java before.
    There are IDEs like Eclipse arround but that are not good at beginning because they are quite complex and don't take away the coding.
    lg Clemens

  • I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    with an iphone 3G the most up to date ios is 4.2.1 so you have a problem because whatsapp requires a higher version.  If you saved an earlier version of whatsapp you could install that otherwise you cannot use the app.  You will need to get a more up to date phone

  • Which open office should I download from the internet?

    Which "Open Office" should I download from the internet?

    Office Alternatives
    LibreOffice
    OpenOffice
    Office Alternatives - Free

  • Which Java Axis verson to download?

    Hello,
    Could anyone advise, I am planning to download the Axis java version.
    I believe this link shows the latest versions.
    http://ws.apache.org/axis/releases.html
    The link at the top is this page, is:
    http://archive.apache.org/dist/ws/axis/1_2RC2/
    Which has four files that one can download.
    axis-1_2RC2-bin.tar.gz 16-Nov-2004 10:04 7.4M
    axis-1_2RC2-bin.zip 16-Nov-2004 10:03 11M
    axis-1_2RC2-src.tar.gz 16-Nov-2004 10:06 9.4M
    axis-1_2RC2-src.zip 16-Nov-2004 10:05 14M
    I am using win98, does anyone know which version should I download?
    Thanks

    Thanks very much.
    I new to Axis, but I believe this software can be used together with amazon's web service. Is this correct?
    Though I think I will be need to do much reading before achieving this.

  • Which word processor should I download?

    Hello.
    Should I download OpenOffice.org or NeoOffice.org? Which one is the better and more reliable one? Which one has more features? Would you recommend another word processor for my iMac?
    Thank you.

    Hi,
    Hello.
    Should I download OpenOffice.org or NeoOffice.org? Which one is the better and more reliable one? Which one has more features? Would you recommend another word processor for my iMac?
    I am running both of them on my Macs and both run fine without issues and do what I want from them.
    For a Word processor only have a look at AbiWord http://www.abisource.com/
    Thank you.
    You're welcome.
    Stefan

  • Which adobe version should be downloaded for a kindle fire 7 hd with linux?

    which version of adobe should be downloaded for a kindle fire 7 hd with linux?

    To the best of my knowledge you are restricted to what ever applications from the Kindle store. There are few Adobe products other than Reader that have been approved by Amazon for their store. In fact, they offer more apps on their andriod store for other manufacturers than they do on their own Kindle store.

  • Speed at which JAVA programs are executed

    While it is true that a typical JAVA program will execute slower than an equivalent program written in other languages such as C++.
    Is it because the compiled bytecodes (.class) have to be interpreted by the JVM?
    Thanks.

    yep, a .class is bytecode... the JVM interprets the bytecode "on the fly".
    The JVM's major task is to "interpolate" native operating system requests. That's why the JVM is platform specific.
    The bytecode to native interpretation takes a few clock ticks, so it's a might slower than native compiled code... but it's practically important to realise that this is not the big performance hit inherent in a "Virtual Machine"... the big (potential) performance loss is the overhead of "interpolating" every single O/S interface request... hence String BufferedReader.readLine() is light-years faster than char InputStream.read(), because .read() has to (1) interpret your request, (2) set the registers, (3) do an operating system interupt, (3) interpret the response... for EVERY SINGLE EENY WEENY CHARACTER... which in practice means you can't do an usable java port of directX... which is a shame really.
    But is does mean that you can (almost) write a webapp which is completely portable across platforms (with zero code change).
    horses....
    keith.
    Message was edited by:
    corlettk

  • Which swype app should I download from the Market?

    I know this isn't a huge deal, but I just want the best swype app that comes standard with the other android phones...from your experiece which is the best to download from the app market?

    go to swype's website. they have an open beta version right now and i loaded it on my inc and it worked great. it's not an official app in the market. you have to get it from swype themselves. you register and they email you instructions. it's real easy to download and install though. 

  • Which java version should I code the SCJD assignment?

    Hi All,
    I am planning to take SCJD (maybe within a year or earlier). But I am confused as to in which version of java should I submit the assignment(CX-310-252A). I read in "All in one Java 2 SCJP..." book by Kathy Seirra that we must not use a verison (of java) that is more than 18 months older than the current production java version as it would be deemed "out-of-date" by the exam assessors (pg 563).
    So going by the same line of thought, does it mean that I can submit the aasignment only in 1.6 (release date-dec 12 2006) and not in java 1.5 or 1.4. Also, if 1.7 gets released early next year and if I am coding in 1.6, then I would have to submit the assignment by june 2008 (or else it would become outdated).
    The various java version release dates can be found at: http://mindprod.com/jgloss/javareleasedates.html
    Please help me solve this version confusion. (I prefer submitting in 1.4 as I have completed SCJP 1.4)
    SCJP 85%, SCWCD 91%
    "Once we accept our limits, we go beyond them"

    1.5 is no longer a valid platform 18 months after the
    initial public release of 1.6.
    What that means is that your code should work on 1.6
    without modifications from that date.Where did you find that information?
    It's a bit strange since this is what The EOL for Java says:
    "Technology EOL Policy
    Major Product Family Releases
    This would include such products as Java 2 Platform,
    Standard Edition 1.4.2 and 5.0. The Java technology policy
    is to support the current shipping version of Java
    Standard Edition plus two back versions. Once the
    End-of-Life process starts on a major product family
    release, a notice will be posted on all relevant download
    pages stating that the product has entered the EOL
    process and how long the process will continue until the
    product is no longer supported by Sun."http://java.sun.com/products/archive/eol.policy.html
    So that means that 1.4.2 will enter EOL when Java 7 is released. How can a version that hasn't entered the EOL life cycle not be valid?
    Kaj

  • Can you tell me if I have a 64 bit operating system which Java update do I download

    Please can anyone advise me on what Java update I download for a Windows 7 64 bit operating system. My Firefox is telling me I need to urgently update my Java but when I click through to update all that is there is a page of confusing information about 32 bit and 64 bit systems. It asks which version am I using 64 bit version of Firefox or 32 bit. I didn't know there were two, I thought when referring to 64 bit and 32 bit it meant the operating system of my computer. Can anyone clear this up for me. Thank you.

    Of course, if you have a x64 bit system, its better to download a x64 bit Java version. However, i think Firefox won't be able to use it since Firefox isn't x64 bit (yet). So if you need Java in your browser, you'll need Java's 32bit version.
    Keep in mind i could be wrong. It's just my guessing because i tried it out some months ago. I installed 64bit Java but Firefox couldn't handle it.
    However in my opinion you won't recognize a difference between 32 and 64 bit, unless you play games in Java or do other resource intensive work. 32bit will always work on a 64bit PC, but not the other way around.

  • Help! Which Java IDE should I choose, and more questions....

    Hello Oracle experts here, I am a college student and I have some questions about Oracle installation to consult you. These days I am learning Oracle, an currently I want to install Oracle on my PC. However I met two problems:
    1. Since I am a novice to learn Oracle, which Oracle products do you recommend? (Oracle8i Lite? Oracle8i Personal Edition? Oracle8i Enterprise Edition? other products?). I am currently learning PL/SQL and JDBC programming associated with Oracle, maybe something else later.
    2. I want to upgrade my win98 to Win2000(Professional or Server version), From your point of view, which OS is better to install for learning Oracle? Win2000 Professional version or Server version(my PC is an PIII and with 192MBytes memory)?
    3. In order to learn JDBC programming related with Oracle, which IDE is better to use? Is JDeveloper a kind of IDE? Is this it the best choose?
    Maybe the above questions seems naive to you, but I really need your help! Your suggestions to any of the above questions are welcome.
    Thanks!!!
    null

    1. Enterprise, about the same dl as personal, so why not.
    2. Win2k Pro will do nicely(dont bother with Server, unless u need server for other purposes as well)
    3. JDeveloper is good, however as a newbie i think u should start out in notepad or alike.

  • Which java dlls should I ship to customer

    I have a C++ application using one of my java object. I want to ship the application to customers, but I do not know which files part of the java environment I should include with it.(jvm.dll, ...)
    Could you tell me what to include and where?
    Jean-Yves

    Ship the whole jre.
    I believe that is a licensing requirement.

Maybe you are looking for

  • URGENT - HELP NEEDED WITH ECC 6.0 ACCESS KEY and USER SETUP

    Please help me with the two issues: 1) In ECC 6.0, When I go to SE12 , table V-FAGL_ACTIVEC (New GL Activation) to make the table display and maintenance allowed, I am asked for the access key. What is the access key that I am supposed to put here. W

  • DVCPRO 50 capture settings from SDX900

    I captured some DVCPRO50 footage that I had shot on an SDX900 set at 24pa progressive. I captured it using the anamorphic DVCPRO50 preset. Looking at the footage, some clips have an interlaced frame every 3 progressive frames, while other clips have

  • Webutil and SQLLDR

    It used to be on the client server when we run a batch file with sqlldr from a form, a cmd window would open and we can actually see a count of the records, and if we want we could make it that the user would have to click a button to close the cmd w

  • Redeployed WS - but changes aren't seen?

    Hello. I wrote a simple WS in JDeveloper, deployed to a .war file, and deployed the .war using OEM. Actually I undeployed the previous version of the WS and then deployed the new version - made some changes and added some logging. However none of the

  • For-Each/Group by...problem

    Hi, I have a sample xml below <root> <objective-sect index="3"> <fm-objective index="1" removable="true"> <fm-obj-name>value 01</fm-obj-name> </fm-objective> <fm-objective index="2" removable="true"> <fm-obj-name>value 02</fm-obj-name> </fm-objective