Category Archive For "NetBeans"
Add CSS to JAVA JSP MYSQL project
In this video I have shown how to add CSS in a JAVA JSP project. Download the Project the CSS added here Login_Project.zip Download the Project without CSS Login_Project Watch from beginning all the step by step how you can create this Login Project Java Jsp MySql login Project Part 1 https://www.youtube.com/watch?v=rC1kZewgb94 JSP login Form …
Integrate login with Social Network using JAVA
All the popular Social Media login integration is shown in the pages below. It includes Facebook, Reddit, Google, Instagram and LinkedIn. Go through the below pages. All the source code is shared in corresponding pages. Login with Facebook. https://chillyfacts.com/integrate-login-with-facebook-using-java/ Login with Google. https://chillyfacts.com/integrate-login-with-google-in-websites-with-java/ Login with Reddit. https://chillyfacts.com/integrate-login-with-reddit-in-website-using-java/ Login with Instagram. https://chillyfacts.com/integrate-login-with-instagram-in-website-using-java/ Login with LinkedIn. https://chillyfacts.com/integrate-login-with-linkedin-in-website-using-java/
How to connect to remote MySql database from NetBeans
This tutorial shows java program to connect to remote MySql Database from NetBeans IDE. Include the MySql jar in classpath of the project. You can download MySql jar here. Update your Database information in the program. DB_Connection.java package DB_Connection; import java.sql.Connection; import java.sql.DriverManager; public class DB_Connection { public static void main(String[] args) { DB_Connection obj_DB_Connection=new …