June 01, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

  •    Java String Methods...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy
Home Java (page 16)

Java

Student MarksCalculation System Using Java

By admin
June 29, 2020
in :  Java
0
900

This tutorial will teach you Student MarksCalculation System Using Java.Input the studentname and marks to calculating the total,grade. the grade is awared as “Pass” when the average is more than 50.otherwise grade is fail. paste the code inside the ok button int num1,num2,num3,tot,avg; num1 = Integer.parseInt(txtnum1.getText()); num2 = Integer.parseInt(txtnum2.getText()); num3 = Integer.parseInt(txtnum3.getText()); tot = num1 + num2 + num3; avg …

Read More

Employee Salary Calculation using Java Swing

By admin
June 29, 2020
in :  Java
0
1,037

This tutorial will teach you  to calculating the employee salary calculation using java .This type of projects java is so imponent those who want to be good java developer. You must get java project ideas here. Features of the Project Input the employee name and the basic salary calculate and display the netsalary using following condition if the basic salary …

Read More

Advance Bus Ticket Booking System in Java Mysql

By admin
June 29, 2020
in :  Java
0
6,582

This tutorial will teach you Advanced Bus Booking System step by step.This system will use to manage the Bus Booking System. The System shall be able to select the seat no which customer wants. Step 1: implement  MouseListener  public class pos extends javax.swing.JFrame implements MouseListener { Step 2:  set the addMouseListener(this) in to each label.  write it inside the constructor. lbl1.addMouseListener(this); …

Read More

Passing Data One JFrame to Another Using Java

By admin
June 29, 2020
in :  Java
0
2,515

This tutorial will teach you  how to send the data from one jframe to another Using java.data will be displayed on the second jframe.in the example i am going to teach add two number to calculating the total.the total will be displayed on the second jframe. paste the code inside the send button int num1,num2,tot; num1 = Integer.parseInt(txtno1.getText()); num2 = …

Read More

Grocery Shop Inventory Using Java

By admin
June 23, 2020
in :  Java
0
2,412

This tutorial will teach you  to make a small shop Grocery Shop Inventory management system in java.how make a system.in in java step by step. The following  system will use to manage the Grocery Shop sales calculation. If you are an interested in pos in java this is the right place where you will able learn inventory management system java …

Read More

Fish Inventory Shop using Java

By admin
June 22, 2020
in :  Java
0
636

This tutorial will teach you  to make a small Fish shop Inventory  system using Java. The following  system will use to manage the Fish shop. paste the code inside the ok button String item = txtstatus.getSelectedItem().toString(); double fish = Double.parseDouble(txtqty.getText()); if(item.equals("KG")) { double cal = (fish * 140) ; txtbill.setText(String.valueOf(cal)); } else { double cal = (fish/1000 * 140) ; …

Read More

ATM Login System using Java

By admin
June 9, 2020
in :  Java
0
2,716

The ATM Login System is developed using Java and mysql.In this tutorial we explain how to set security password. We have created two fields Account No,Pinno. : Enter the Account No and Pinno in the database matches.if the Account matched with Pinno Display the Message as “Welcome” otherwise “Check the Accno and Pinno”. First Step we created database which name is “lmc”  …

Read More

Customer Count using Java Mysql

By admin
June 8, 2020
in :  Java
0
1,212

This tutorial will teach you how to create customer count using java mysql.this program help you find no of customers. The user shall be able to register the customer. The user shall be able to count the no of customer. Establish the Database Connection public void Connect() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/gsm", "root", ""); } catch (ClassNotFoundException ex) …

Read More

DataInputStream Class

By admin
June 5, 2020
in :  Java
0
696

The Class DataInputStream is baselly handle a primitive type data types   Example 1 write a programme to input your Firstname,lastname input them. import java.io.*; public class DataInputstream { public static void main(String[] args) { DataInputStream dis = new DataInputStream(System.in); String fname,lname; fname = ""; lname = ""; try { System.out.print("Enter Your FirstName"); fname = dis.readLine(); System.out.print("Enter Your LastName"); lname …

Read More

Restaurant Simple Pos in Java

By admin
June 3, 2020
in :  Java
0
3,110

The Restaurant Simple Pos is developed using Java. The project is built to manage sales and transactions. To make a new transaction, fields such as: Item type with ingredients, qty needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning. In this tutorial useful …

Read More
1...15161718Page 16 of 18

Recent Posts

  • Free GPT Chat? DeepSeek AI Does It Better
  • Spring Boot MySQL Complete CRUD REST API [ Free Sourecode ]
  • CREATE a Responsive Navigation Bar with FlexBox CSS!
  • Registration with image upload Java Jdbc(Download Source code)
  • Touchable shop Pos system using Java

© Copyright 2020, All Rights Reserved Powered by Tutussfunny