Skip to main content

Preparing Java Development Kit

Okay now the book is done. now moving to what i need to compile or making Java Application.

what i read in Java Programming Language Handbook by Anthony Potts and David H. Friedel, Jr. is that we need
- Java Development Kit (JDK) in order to create and run Java.

JDK is avaliable to download at [Link:http://www.javasoft.com]
in this book im notice that they creating the first application is an Applet.
This applet seems to me a bit advance programming i hardly understand what im supposed to do with it.

next thing i know that i have to compile it to create a *.class file.
how the hell...

well i guess this book is not so very beginner im not a beginner but this stuff is to hard to handle.

ill just read other book.

Comments

Popular posts from this blog

JavaScript Real Time Calculation

I've been around looking for javascript that can do Real Time Calculation. javascript real time calculation, javascript real time calculation textbox. by some lucky keywords i found this code. this is exactly the code that i want. it really do the real time calculation. and it doesn't need onChange or OnBlur function. Just try it Example + = this is the javascript code <script type='text/javascript' > function startCalc(){   interval = setInterval("calc()",1); } function calc(){   one = document.autoSumForm.firstBox.value;   two = document.autoSumForm.secondBox.value;   document.autoSumForm.thirdBox.value = (one * 1) + (two * 1); } function stopCalc(){   clearInterval(interval); } </script> this is the html code <form name="autoSumForm">   <input class="right" type=text name="firstBox" value="" onFocus="startCalc();" onBlur="stopCalc();"><br...

BlackBerry ListField Tutorial Part 2

Blackberry ListField with Clicked Row this time i create based on rtm4bb code. it used manager as TableRowManager to create the field for each row. first i create MenuListField.java