Java Swing Apps
Online Exam
In this project, there are given 10 questions to play. User can bookmark any question for the reconsideration while going to result. We are using…
Tic Tac Toe Game
In this example, we are going to see the example of tic tac toe game (also known as 0 and x (cross)). It can be…
Pic Puzzle Game
import java.awt.event.*; import java.awt.*; import javax.swing.*; class picpuzzle2 extends JFrame implements ActionListener{ JButton b1,b2,b3,b4,b5,b6,b7,b8,b9,sample,starB; Icon star; Icon ic0=new ImageIcon(“pic/starB0.jpg”); Icon ic10=new ImageIcon(“pic/starB10.jpg”); Icon ic20=new ImageIcon(“pic/starB20.jpg”); Icon samicon1=new ImageIcon(“pic/main.jpg”); Icon samicon2=new ImageIcon(“pic/main2.jpg”); Icon samicon3=new ImageIcon(“pic/main3.jpg”); Icon ic1=new ImageIcon(“pic/1.jpg”); Icon ic2=new ImageIcon(“pic/5.jpg”); Icon ic3=new ImageIcon(“pic/2.jpg”); Icon ic4=new ImageIcon(“pic/7.jpg”); Icon ic5=new ImageIcon(“pic/4.jpg”); Icon ic6=new ImageIcon(“pic/6.jpg”); Icon ic7=new ImageIcon(“pic/8.jpg”); Icon ic8=new ImageIcon(“pic/9.jpg”); Icon ic9=new ImageIcon(“pic/3.jpg”); Icon ic11=new ImageIcon(“pic/12.jpg”); Icon ic12=new ImageIcon(“pic/13.jpg”); Icon ic13=new ImageIcon(“pic/16.jpg”); Icon ic14=new ImageIcon(“pic/11.jpg”);…
Puzzle Game
Puzzle Game in Java with Source Code: We can develop Puzzle Game in java with the help of AWT/Swing with event handling. Let’s see the…
Folder Explorer
Folder Explorer in Java with Source Code: We can develop Folder Explorer in java with the help of IO Stream, AWT/Swing with event handling. Let’s…
URL Source Generator
URL Source Code Generator in Java with Source Code: We can develop URL Source Code Generator in java with the help of networking, AWT/Swing with…
Word Counter
Word Character Counter in Java with Source Code: We can develop Word Character Counter in java with the help of string, AWT/Swing with event handling….
Calculator
Calculator in Java with Source Code: We can develop calculator in java with the help of AWT/Swing with event handling. Let’s see the code of…