Javascript  
 
  ScriptJava  
 
  Perl  
 
  PHP  
 
  ROR  
 
  ask us  
 

 

Applications
  1. Getting started
  2. Definitions
  3. First program
  4. Characters and Strings
  5. Object and methods
  6. Arrays and Circles
  7. Exceptions
  8. The main method
  9. Reading
  10. Writing file
  11. Vectors
  12. Stacks
  13. Map The Dictionary
  14. Lists
  15. Linked lists
  16. Collection
  17. Interfaces
  18. Scanner
  19. StringTokenizer
  20. Generics
  21. JDBC
  22. DataBase Queries
  23. JSP, The main step

Graphics

Applets
  1. Regards
  2. One Picture
  3. Calculator
  4. Random pictures
  5. Bouncing picture

Swings
  1. Buttons listeners
  2. TextFields
  3. Swing Example

JavaBeans
  1. The first step
  2. Example

Search a word:
   



© The scientific sentence. 2010

HowTo: JDK1.5, JDK1.6, Apache2.2, Tomcat6.0, and Oracle 10g
Java, Apache, Tomcat, Oracle Database: How to

  
I. Java

Download and install Java SDK and JRE at:
http://java.sun.com/javase/downloads/index.jsp

Look for :
JDK 6 Update 3
The Java SE Development Kit (JDK) includes the Java Runtime Environment 
(JRE) and command-line development tools that are useful for developing 
applets and applications.

and click on the “Download” button, that leads to :
jdk-6u3-windows-i586-p.exe  	65.64 MB

Once dowloaded, doubleclick on the file.exe to start the installation.
That should give:
C:\Program Files\Java\jdk1.6.0_03
C:\Program Files\Java\jre1.6.0_03

For Windows XP, Go to:
Sittings - Control Panel - System - Advanced - Environment Variables
Set: 
JAVA_HOME C:\Program Files\Java\jdk1.6.0_03
and the classpath:
CLASSPATH .;C:\Program Files\Java\jre1.6.0_01\lib\ext\QTJava.zip

Test you installation:

On Windows XP: Click on start and run cmd.exe (whcih is the 
Wondows command line) to have the prompt.

Make a directory in C:\, like C:\Java>

Choose a text editor and write (or copy and paste) the 
following program:

class Regards{
static void Display (String Word){
System.out.println("This is the related word:" + Word);
}
public static void main (String[] args){
Display ("Regards");
System.out.println(" All the best of luck.");
}
}

Save it as Regards.java in the C:\Java> directory

Then compile it as:
C:\Java>javac Regards.java
and execute as:
C:\Java>java Regards

The output will be:

This is the related word: Regards
All the best of luck.


Tomcat

  
Google
Web
ScientificSentence
 




chimie labs
|
scientific sentence
|
java
|
php
|
green cat
|
contact
|


© Scientificsentence 2009. All rights reserved.