What is JDK? Where we use JDK?

What is JDK? Where we use the JDK? IS it JAVA related?

It's not that stupid a question. I mean, if you were a developer, but had never used Java before, why would you automatically know the differences between the JDK, JRE, SDK, J2SE, Java 5, J2EE, etc. ?
I know when I first investigated J2EE I had vaguely assumed that it would include the development tools.
Until you dive into the tutorials it's not explained very clearly what the distinctions are. Even now Sun tend to use some internal acronyms which aren't clearly defined anywhere (don't get me started about "FCS").
I'd be a lot more sympathetic to the cause of marketing idiocy (see Java and Solaris/SunOS version numbering) if they managed to make the names clearer, instead of confusing potential new customers.
But hey, what dos that matter so long as it goes to 11?
No, the OP is just asking in a really dumb place...

Similar Messages

  • What is Prtitioning Where we use this?

    I want to know about Partitioning?
    W

    Navigation:
    Goto infocube change mode ->Extras menu->DB performance-> Partitioning.
    Usage,Pros and Cons:
    It is the logical partition of the data of the cube and it refers to creation of blocks according to time characteristics(0CALMONTH,OFISCPER) available in the target. So that Cube Partitioning will improve the Data Load performance. It also improve performance in reporting.
    Partition is usefull for improving performance of query. once u create partition data load on that particular cube is divided depends upon how many partition u've created.
    For complete info check out this link:
    [PARTITIONING...|http://help.sap.com/saphelp_nw04s/helpdata/en/33/dc2038aa3bcd23e10000009b38f8cf/content.htm]

  • Do u know what is jdk 1.4.1 and j2ee 1.4.1?

    hi~ do u know what is jdk 1.4.1 and j2ee 1.4.1? Are they sotware program like jbuilderX for example? Do u know which of these 2 is better for jxta? Do u know the installation procedures for jdk1.4.1 and j2ee1.4.1? thanks!

    jdk means J2SE(Java Software Development Kit)
    is it j2ee or jre?
    No they are the main software for run a java program.
    jbuilderX is a editor where you can write java programs using jdk or jre.
    Both are need for jxta.
    Just run jdk 1.4.1 setup.exe file.That automatically install jdk and jre to your PC.

  • What is joins?where we use it. is it DD concept? abap

    hi abapers,
    what is joins?where we use it. is it DD concept?
      regards,
      anjan

    hi srinivas.
    chk this simple example.
    u will get good idea.
    table emp
    empno name
    a sasi
    b xxx
    c yyy
    table sal
    empno salary
    a 1000
    b 2000
    Inner join
    select eempno ename
    s~sal
    into table int_table
    from emp as e
    inner join sal
    on
    eempno = sempno.
    if you made inner join between table a and b by emp no
    the selection retrives only if the condition satisfy the output will be
    a sasi 1000
    b xxx 2000
    Outer join
    select eempno ename
    s~sal into table  int_table
    from emp as e
    LEFT OUTER JOIN sal
    on
    eempno = sempno.
    if you made outer join (left /right ) the left table kept as it is the
    if the condition satisfy the right table entries will fetch else leave it blank
    the output will be
    a sasi a 1000
    b xxx b 2000
    c yyy
    rgds
    anver
    if helped mark points

  • What is use of ejbPostCreate(), what it returns, where exactly can it be in

    what is use of ejbPostCreate(), what it returns, where exactly can it be invoked?

    Why don't you try reading or googling or something, rather than asking every question that pops into your head?

  • What happens u0093Updateu0094 command is used without where clause ?

    Hi
    What happens “Update” command is used without where clause ? 
    thank you

    Hi subash,
    chk this help
    UPDATE  dbtab      SET f1 ... fn. or
    UPDATE (dbtabname) SET f1 ... fn.
    Extras:
    1. ... WHERE condition
    2. ... CLIENT SPECIFIED
    3. ... CONNECTION con
    Effect
    Updates values in a database table. <b>If there is no WHERE clause, all lines (in the current client) are updated.</b> If a WHERE condition is specified, only thoserecords which satisfy the WHERE condition are updated.

  • What is performance optimizaion in bods ?? where we use ??

    what is performance optimizaion in bods ?? where we use ??

    Dear
    for increasing performance in BODS
    Some tips for fine tuning the BODS job for faster and efficient executions with optimal resource utilizations.
    Regards

  • What is info type 1957 and where its used?

    What is info type 1957 and where its used?

    I have used this infotype.
    check out this link
    P1957 Infotype 1957 - Obsolete, DO NOT USE - SAP Structure - ABAP

  • TS3274 This week the keypad "jumped" to the top of the screean't see what I'm typing! How do I get it back down to where it used to be?

    This week the keypad "jumped" to the top of the screen so that I often can't see what I'm typing! Not sure why it happened and want to know how to get the keypad back down to where it used to be! Can anyone help?
    Cheers
    Freddy

    If the keyboard is split and covering your text, Pull the two ends of the keyboard together - into the middle of the screen. You can also tap and hold down on the little keyboard icon in the lower right corner of the keyboard and select - Dock and Merge.
    If the keyboard is up on the middle of the screen, but not split, and you want to move it back to the bottom - tap and hold down on the little keyboard and icon and select - Dock
    You can turn the split keyboard off in Settings>General>Keyboard>Split Keyboard>Off.

  • Oracle BI what is cubes and dimention and where we use cubes and dimention

    Dear ,
    I am working on Oracle BI.
    what is cubes and dimentionS and where we use cubes and dimention
    Please give a link where i get stuff regarding cubes and dimentions.
    thanks

    Possibly you are lost in the wrong forum category ...
    Post your query in:
    Hyperion EPM

  • WHAT IS DELTA JOB IN BODS ?? WHERE WE USE DELTA JOBS ??

    WHAT IS DELTA JOB IN BODS ?? WHERE WE USE DELTA JOBS ??

    There is no 'Delta Job' object in Dataservices, In any ETL tool if you are loading data in incremental way based on certain conditions (Ex: Extract only yesterday's changed data and load), then its a Delta load, the Job which does this, you may call Delta Job.
    Please don't use ALL CAPS, its like yelling in forum

  • How to tell what methods where not used in the code?

    Hi there,
    I wonder if there's a way to check what method are not used in the execution code (void main).
    Example:
    in the code below, the following method where not used:
    setAge, getAge, getName,setName, addFeedback
    public class Test
         public static void main(String args[])
              Employee empl = new Employee("John", 54);
              System.out.println(empl.getDeatils());
    public class Employee
         private int age;
         private String name;
         public Employee(String name, int age)
              this.name=name;
              this.age=age;
         public String getDeatils()
              return name+" ("+age+")";
         public void addFeedback()
              //do something here.
         public int getAge()
              return age;
         public void setAge(int age)
              this.age = age;
         public String getName()
              return name;
         public void setName(String name)
              this.name = name;
    }

    Yucca wrote:
    georgemc wrote:
    Yucca wrote:
    Sound like you should visit the logging API or you could do SOP all over your code which would make it very unreadableI don't see why logging code will make his code any less messy than SOP everywhere. Unless you're talking about applying logging by AOP, which is equally messy in a different way.I never implied that the one was tidier than the other. O merely recommended my knowledge on how to help the OP and gave 2 choices. Oh right. It looked like you were suggesting SOP was messier somehow. Never mind, then.
    Besides is AOP really that bad when using Interceptors? I know that this is new to Java but interceptors are really not that untidy.I didn't say they were untidy. I didn't say there was anything wrong with AOP. But logging by AOP results in pretty useless, messy logs. "This method was called with these parameters" all over the place, rather than something nice and friendly. Remember, logging is more often read by support staff than developers, so while it might be obvious to you what "getLlama(200, 3)" means, it's probably garbage to the support bods.

  • What flash player do l use for my lpad and where can l get it ?l want to play online games

    what flash player do l use for my lpad ? to play online games

    Some Facebook games, for example, Farmville, have their own iPad apps.
    Check the App Store to see if the games which you play have an App.

  • HT5569 My i-touch keeps searching for a wi-fi network where it use to connect and all my other apple devices still connect. I have reset, reload, off and on and off and on....what else could I try?

    My ipod touch just keeps searching for a wi-fi connection in my house where it use to connect automatically. My other apple devices still are connecting so not the wi-fi. I have reset to original settings, turned off-on-off-on... nothing seems to work. Does anyone have any ideas?
    Thanks!

    Does the iPod connect to other networks?
    Does the iPod see the network?
    Any error messages?
    Do other devices now connect?
    Did the iPod connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device. (I think you did this)
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • What system properties does JavaFX use?

    What system properties does JavaFX use, what are their value options and what do they do?
    Do system properties used by JavaFX vary across platforms?
    Will the JavaFX system properties continue to work in future JavaFX versions?
    Example properties are => -Dprism.lcdtext=false, -Dprism.order=j2d
    I'm only interested in properties specific to JavaFX, not generic to the Java environment or JDK/JVM implementation.
    If there is some documentation I missed, please just point me to a link to that.

    :-) The one about lcdtext I found in JIRA. No idea if that continues to be supported... but I sure hope so.
    I'd also be interested in a full list. Here's an old list I found:
    com.sun.scenario.animation.adaptivepulse
    com.sun.scenario.animation.AnimationMBean.enabled
    com.sun.scenario.animation.nogaps
    decora.purgatory
    glass.platform
    javafx.animation.framerate
    javafx.animation.fullspeed
    javafx.animation.pulse
    javafx.debug
    javafx.embed.isEventThread
    javafx.sg.warn
    javafx.toolkit
    javafx.verbose
    javafx.version
    nativewindow.ws.name
    prism.debug
    prism.device
    prism.dirtyregioncount
    prism.disableBadDriverWarning
    prism.forcerepaint
    prism.multisample
    prism.noFallback
    prism.order
    prism.printallocs
    prism.reftype
    prism.showcull
    prism.showdirty
    prism.shutdownHook
    prism.tess
    prism.tessaa
    prism.trace
    prism.verbose
    quantum.debug
    quantum.pulsedebug
    quantum.verbose
    From http://www.adamish.com/blog/archives/320

Maybe you are looking for

  • Time Capsule: Files lost after Secure Shared Disk: with accounts

    I Changed the Disks: Secure Shared Disk option to 'with accounts' on my Time Capsule and now all files are invisible. It looks the files must be still on the disks because of the amount of free/used bytes used that is displayed. How can I restore the

  • How to connect sqldeveloper to MYSQL

    Is it possible to connect this product to a mysql database and run queries in MYSQL w/o migrating to Oracle? If so, can someone please point me to a decent document (hopefully one that Oracle hasn't written).

  • BOM structuring for multiple location manufacturing

    Hi, One of the product is manufactured in multiple locations (US and India). Some of the components are different when manufactured in these two locations. Ex: Steel rod is one of the component of this product and "Brand A" steel rod is used when man

  • Question's about Ipod 4th generation

    will I beable to transfer all my games video's & music from my old Ipod to my new Ipod when I hook up to Itunes

  • Ipod battery charging problem not found in any posts

    OK here's the problem The battery meter on my 5g flashes that charging symbol, even when it's not plugged in the wall. And sometimes when I use my friends griffin charger it charges and than stays on the charged symbol even after I unplug it. Also my