Skip to main content

Java Contents


 -This free course is for those wishing to learn the Java programming language. It is aimed at complete beginners to the subject, and no knowledge is assumed. The software you need to do the course is set out below, in the "What you need to get started" link. Once you have downloaded everything you need, you can make start by following the links on this page. Good luck!


Home Page
Home Page


> Section 1: Getting Started with Java

1. What you need to get started

2. The Netbeans Software
3. Java Comments
4. The Structure of Java Code
5. How to Run your Java Programmes
6. Printing to the Output Window
7. Sharing your programmes with others

> Section 2: Variables
1. Integer Variables in Java
2. Double Variables
3. Short and Float
4. Operator_Precedence
5. Java String Variables
6. Getting Input from the User
7. Option Panes

> Section 3: Control Flow
1. If Statements in Java
2. If Else Statements
3. Boolean Values
4. Switch Statements
5. Java for Loops
6. Java While Loops

> Section 4: Arrays in Java
1. Java Arrays
2. Arrays and Loops
3. Sorting Arrays
4. Arrays and Strings
5. Multi-Dimensional Arrays
6. Array Lists

> Section 5: Java String Methods
1. Java and Strings
2. Upper and LowerCase
3. The compare Method
4. The indexOf Method
5. The substring Method
6. The equals Method
7. The charAt Method
8. The replace Method
9. Printing Formatted Strings

> Section 6: Java Methods
1. Java Methods
2. Calling your Java Methods
3. Passing Values to Methods
4. Mutliple Method Parameters

> Section 7: Java Classes
1. Writing your own Java Classes
2. Field Variables
3. The Java Class Constructor
4. Accessing Class Variables
5. More on Java Class Methods
6. Java and Inheritance

> Section 8: Java Error Handling
1. Error Handling and Excpetions
2. Stack Trace
3. Handling Logic Errors in Java

> Section 9: Dealing with Text Files in Java    
1. Open and Read a Text File in Java 
2. Write to a Text File in Java

> Section 10: A Java Calculator Project 
1. Java Forms
2. The Different Form Views in NetBeans
3. Add a Text Box to a Java Form
4. Add a Button to the Form
5. Button Properties
6. Java Form Events
7. Coding for the Plus Button
8. Coding for the Equals Button
9. Coding for the Clear Button
10. Subtract, Divide, Multiply Buttons

> Section 11: More Java Form Controls          
1. Java and Combo Boxes
2. Java Check Boxes
3. Radio Buttons
4. Adding Menus to a Java Form
5. Open File Dialogue Boxes
6. Opening Files
7. Save File Dialogue Boxes

> Section 12: Java and Databases
1. Java and Databases
2. Creating a Database with Java
3. Adding Records to Table
4. SQL Commands
5. Connect to a Database with Java code
6. Connecting to the Table

> Section 13: Databases and Java Forms
1. Databases and Java Forms
2. Database Scrolling Buttons
3. Move Back Through the Database
4. Move to the First and Last Records
5. Update a Record
6. Add a New Record
7. Save a New Record
8. Delete a Record from a Database

Comments

Popular posts from this blog

Beginners PHP  -This is a complete and free PHP programming course for beginners. It's assumed that you already have some HTML skills. But you don't need to be a guru, by any means. If you need a refresher on HTML, then click the link for the Web Design course on the left of this page. Everything you need to get started with this PHP course is set out in section one below. Good luck! Home Page > PHP Section One - An Introduction to PHP 1. What is PHP and Why do I need it? 2. What you need to get started 3. Installing and testing Wampserver 4. Troubleshooting > PHP Two - Getting Started With Variables 1. What is a Variable? 2. Putting text into variables 3. Variables - some practice 4. More variable practice 5. Joining direct text and variable data 6. Adding up in PHP 7. Subtraction 8. Multiplication 9. Division 10. Floating point numbers > PHP Three - Conditional Logic 1. If Statements 2. Using If Statements 3....
Visual Basic .NET Contents Page   -This computer course is an introduction to Visual Basic.NET programming for beginners. This course assumes that you have no programming experience whatsoever. It's a lot easier than you think, and can be a very rewarding hobby! You don't need to buy any software for this course! You can use the new FREE Visual Basic Express Edition from Microsoft. To see which version you need, click below: Getting the free Visual Studio Express - Which version do I need? > VB .NET One - Getting Started   1. Getting started with VB.NET 2. Visual Basic .NET Forms 3. Adding Controls using the Toolbox Home Page 4. Adding a Textbox to the Form 5. Visual Basic .NET and Properties 6. The Text Property 7. Adding a splash of colour 8. Saving your work 9. Create a New Project >   VB .NET Two - Write your first .NET code   1. What is a Variable? 2. Add a coding button to the Form 3. Writing y...
The Excel SumIF Function  - Another useful Excel function is SumIF. This function is like CountIf, except it adds one more argument: SUMIF( range ,  criteria ,  sum_range ) Range and criteria are the same as with  CountIF  - the range of cells to search, and what you want Excel to look for. The Sum_Range is like range, but it searches a new range of cells. To clarify all that, here's what we'll use SumIF for. (Start a new spreadsheet for this.) Five people have ordered goods from us. Some have paid us, but some haven't. The five people are Elisa, Kelly, Steven, Euan, and Holly. We'll use SumIF to calculate how much in total has been paid to us, and how much is still owed. So in Column A, enter the names: In Column B enter how much each person owes: In Column C, enter TRUE or FALSE values. TRUE means they have paid up, and FALSE means they haven't: Add two more labels: Total Paid, and Still Owed. Your spreadsheet should look something li...