June 02, 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 14)

Java

URL Test using Java network programming

By admin
November 7, 2020
in :  Java
0
644

This tutorial will teach you how to test Url.defined in the URL class to retrieve information about the URL. public class URLTest { public static void main(String[] args) { URL obj; try { obj = new URL("https://www.tutussfunny.com"); System.out.println("Protocal : " + obj.getProtocol() ); System.out.println("host : " + obj.getHost() ); System.out.println("Port : " + obj.getPort()); } catch (MalformedURLException ex) { Logger.getLogger(URLTest.class.getName()).log(Level.SEVERE, …

Read More

Advanced Salary Calculation System using Java

By admin
October 29, 2020
in :  Java
0
1,531

This tutorial will teach you how to make a Advanced Salary Calculation System using Java. this tutorial help you to find out the Employee bonus,OT amount,netsalary. when you calculating employee bonus based on the following condition. if the salary is more than 50000,include 10% bonus of the salary if the salary is more than 30000,include 5% bonus of the salary …

Read More

Meeting schedule system Project Java and Mysql

By admin
October 28, 2020
in :  Java
0
3,557

This tutorial will teach you how to make a Meeting schedule system Project Java and Mysql.this system easy to store the records into the database. Feature of projects The system shall be able to record meeting details The system  shall be able to retrieve the meeting details Learn how to make this System Step by step Step 1: Download JDK  Click here  follow …

Read More

Transaction using java mysql

By admin
October 19, 2020
in :  Java
0
593

The transaction is a set of Sql statement that can be executed  as a single unit.the transaction is complete only when all the sql statements in a transaction excute successfully.if any one of the sql statement in the transaction fails the entire transaction is rolled back. paste the code inside the main method import java.sql.*; public class Transaction { public …

Read More

Batch Processing Java JDBC Gui

By admin
October 13, 2020
in :  Java
0
655

This tutorial will teach you how to make a Batch Processing Java JDBC Gui application. Establish the database Connection Connection con; PreparedStatement pst; ResultSet rs; public void Connect() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/vmproducts","root",""); } catch (ClassNotFoundException ex) { } catch (SQLException ex) { } } Select the txtaccountno textfield right click >Key->Event->KeyReleased past the code inside the KeyReleased  …

Read More

Batch Program in Java JDBC

By admin
October 12, 2020
in :  Java
0
429

The group of update statements that are sent to a database to be executed as a single unit called batch in java. import java.sql.*; public class Batch{ public static void main(String[] args) { Connection con=null; try{ Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/vbank","root",""); Statement st1=con.createStatement( ); String SQL1="insert into account (accno,bal) values('A0008',2500) "; String SQL2="insert into account (accno,bal) values('A0009',1500) "; String SQL3="update account …

Read More

Key Release Event Java and Mysql

By admin
October 9, 2020
in :  Java
0
760

This tutorial will teach you how to find the account holder balance  using Key Release Event Java and Mysql. Key Release Event Search Select the txtaccountno textfield right click ->Key->Event->KeyReleased past the code inside the KeyReleased  event private void txtaccnoKeyReleased(java.awt.event.KeyEvent evt) { Connection con; PreparedStatement pst; ResultSet rs; String accno = txtaccno.getText(); try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/vbank","root",""); pst = …

Read More

Auto no generator using java mysql

By admin
September 14, 2020
in :  Java
0
646

This tutorial which help you to generating auto no using java and mysql. Establish the database Connection public void Connect() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/gshop","root",""); } catch (ClassNotFoundException ex) { } catch (SQLException ex) { } } Auto no generator.create the function Custno(). public void CustNo() { int custno = 1; try { Statement smt = con.createStatement(); ResultSet …

Read More

Point of sales System Java and Mysql

By admin
September 13, 2020
in :  Java
0
3,694

The Point of  sales System is developed using Java and mysql. The project is built to manage  sales and transactions. To make a new transaction, fields such as: product name, qty and payment 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.point of …

Read More

Java Loan Calculaion Project

By admin
September 11, 2020
in :  Java
0
734

The Loan Calculaion System is developed using Java. This project use to calculate the Loan amount.this project is very useful for beginners. Free Source Code Download Download  

Read More
1...131415...18Page 14 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