Motion Detector in JavaThis link can be used to download the library used to make this project:import javax.sound.sampled.*;import java.io.File;import java.io.IOException;import com.github.sarxos.webcam.Webcam;import com.github.sarxos.webcam.WebcamMotionDetector;import com.github.sarxos.webcam.WebcamMotionEvent;import...
Search This Blog
Thursday, June 17, 2021
Friday, June 4, 2021
Basic Calculator Using 'GUI' in java

Calculator Using GUI******************************** package com.company;import javax.swing.*;import java.awt.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;public class GUI_calculator implements ActionListener { float first=0; float second=0; ...
Wednesday, June 2, 2021
Library Management System in Java
Library Management Systemimport java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
class Library{
Scanner sc=new Scanner(System.in);
List<String> Books=new ArrayList<String>();
List<String> IssuedBooks=new ArrayList<String>();
public void addBook(){
System.out.print("Enter the name of the book to be added: ");
Books.add(sc.nextLine());
...
Subscribe to:
Posts (Atom)