User-submitted Java Projects

386
9009 reads
Madman0101's picture

Submitted by

Madman0101
Observer Pattern
This example demonstrates Observer Pattern in java. this example Observer Pattern Defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notifi
Run It Now!
153
1813 reads
Madman0101's picture

Submitted by

Madman0101
Mediator Pattern
This example demonstrates Mediator Pattern in java.Mediator define an object that encapsulates how a set of objects interact.
Run It Now!
177
1875 reads
Madman0101's picture

Submitted by

Madman0101
Strategy
This example demonstrates Strategy in java. this example Strategy Define a family of algorithms, encapsulate each one, and make them interchangeable.
Run It Now!
69
2934 reads
Madman0101's picture

Submitted by

Madman0101
Tags:

Use Arrays In Java.
The below example demonstrates how to use arrays in java. The below example creates an array of objects of Class Game until the user press n as input.
Run It Now!
65
2247 reads
Using an Array List Collection
The below example demonstrates how to use ArrayList Collection in java. The below example creates an arraylist of objects of Class Game untill the user press n as input.
Run It Now!
143
3226 reads
SuperMario3's picture

Submitted by

SuperMario3
Tags:

MVC using Servlets and JSPs
This example demonstrates Product registration and after registering display registered product. example has two links on home page.
MVC using Servlets and JSPs

Run It Now!
185
1845 reads
Adrian999's picture

Submitted by

Adrian999
visitor pattern
This example demonstrates Visitor Pattern in java. In this example Visitor Pattern Represents an operation to be performed on the elements of an object structure / Visitor lets you define a new opera
Run It Now!
72
2578 reads
Handling Logic Errors in Java
The below example demonstrates how to display a logical error in the code (called a bug) The below program encounterts the bug on line 9, which actually should be: single_letter = check_word.substr
Run It Now!
27
2279 reads
Adrian999's picture

Submitted by

Adrian999
Method Reference Example
The below program demonstrates how to pass by values by references in methods. The below program defines a method named commonValue of Class Point which takes Objects of Class Point as Parameter.
Run It Now!
25
2383 reads
Adrian999's picture

Submitted by

Adrian999
Use Try-catch Blocks
The below example demonstrates how to use try-catch blocks to catch an exception. The below example encounters an Arithmetic Exception as it try's to divide 42 by 0.
Run It Now!