September 14, 2025
Trending Now
  •    Build a Simple Water System Calculator in Java...

  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

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

  •    Java Beans...

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

Record Navigation using Java Mysql Examples

By admin
November 19, 2020
in :  Java
0
1,092

This tutorial will teach you how to make Record Navigation using Java Mysql. First we have to Connect to  Database create the method connect() public void connect() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/apocompany","root",""); stat = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY); rs = stat.executeQuery("select id,custname,loantype,amount from loan"); } catch (ClassNotFoundException ex) { ex.printStackTrace(); } catch (SQLException ex) { ex.printStackTrace(); } } after that call …

Read More

Month Find Example using Java

By admin
November 18, 2020
in :  Java
0
502

This tutorial will teach you how to make Month Find Example using Java. Paste the code inside the find button int mnum; mnum = Integer.parseInt(txtmnumber.getText()); switch (mnum) { case 1: txtmonth.setText("January"); break; case 2: txtmonth.setText("February"); break; case 3: txtmonth.setText("March"); break; case 4: txtmonth.setText("April"); break; case 5: txtmonth.setText("May"); break; case 6: txtmonth.setText("June"); break; case 7: txtmonth.setText("July"); break; case 8: txtmonth.setText("August"); break; …

Read More

Simple Jsp Project Step by Step

By admin
November 17, 2020
in :  Free Projects
0
3,457

This tutorial will teach you how to make Simple School management System in Jsp.This project will help you those who  are interested in learn jsp step by step. Feature of projects The system shall be able to record student details The system  shall be able to retrieve the student details Then system shall be able to Edit and Delete the …

Read More

Calculating manpower project using java

By admin
November 16, 2020
in :  Java
0
1,255

This tutorial will teach you how to alculating manpower project using java. Paste the code inside the Cal Button double projectdays,projecthours,works,tot; projectdays = Double.parseDouble(txtdays.getText()); projecthours = Double.parseDouble(txthours.getText()); projectdays = Double.parseDouble(txtemp.getText()); tot = projectdays * projecthours * projectdays; txttot.setText(String.valueOf(tot)); Paste the code inside the Exit Button System.exit(0);  

Read More

Asp.net Crud Insert,Update,Delete,Search

By admin
November 12, 2020
in :  Free Projects
0
2,440

This Asp.net will teach you how to do basic database functions that are CREATE RETIEVE UPDATE and DELETE. using Sql Database. The INSERT, SELECT, UPDATE and DELETE statements can be used in any database system, because this is support by all relational database systems. We will learn how to INSERT, SELECT, UPDATE and DELETE in database by writing code to …

Read More

JCombo box Search using Java mysql

By admin
November 11, 2020
in :  Java
0
967

This tutorial will teach you how to search records using JComboBox Java and Mysql. we will teach step by step. First we have to load the JComboBox following code will help you to load the Jcombobox private void employeeID() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/melwa","root",""); pst = con.prepareStatement("select * from employee"); ResultSet rs = pst.executeQuery(); txtemp.removeAllItems(); while(rs.next()) { txtemp.addItem(rs.getString(1) …

Read More

URL Test using Java network programming

By admin
November 7, 2020
in :  Java
0
651

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

Search records using Servlet Jsp mysql

By admin
November 5, 2020
in :  Jsp
0
3,403

This tutorial will teach you how to make search using Servlet Jsp mysql step by step.we have created the file index.jsp After run the page you will see the above sceenshot page. when the page is loaded all the city data will be retrieved from the database and pass to the  dropdownbox. you have to select the city from the …

Read More

Advanced Salary Calculation System using Java

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

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

Automatic Logout Inactivity using Jsp Servlet

By admin
October 28, 2020
in :  Jsp
0
1,785

This tutorial will teach you how to make a Automatic Logout after 30 minutes Inactivity using Jsp.When the user doesn’t log out the system that might be a problem. Any one can see the records of the system, it is not safe now a days every person leaves the mistakes when the works is busy. So that I did this system which help you in the future. If the user not access the system …

Read More
1...404142...50Page 41 of 50

Recent Posts

  • Build a Simple Water System Calculator in Java Using Swing
  • GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025
  • Chat with Claude AI Free – Your Super-Smart AI Buddy
  • Best Festivals UK 2025 [Free Guide Included]
  • Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

© Copyright 2020, All Rights Reserved Powered by Tutussfunny