recaptcha to download a file HTML
This tutorial shows how to integrate reCaptcha for download a file. This is HTML example and will work for all programming languages. Please note that this example will run in server after updating the site information in recaptcha site as shown in the youtube video. First get the site key from google recaptcha site. Please …
How to install Mysql 5.0 in Windows
Please see the video. I have shown the step by step process how to install MySql in Windows. Then Create a database and table. Download the installation file here. Mysql5.0.rar
Get IP address Location of Client/User JAVA web project
This project shows how to take IP address of user in your Web Project. And you can use the IP address to predict the location where they are using. Update the Key after registering in the website https://ipinfodb.com/ Get_Location_From_IP.java package Modal; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; public class Get_Location_From_IP { public Location_Use_Bean get_ip_Details(String ip) …
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/
Integrate Login with Reddit in Website using JAVA
Download the Source code here reddit_login_project.rar
Integrate Login with LinkedIn in Website using JAVA
Download the project Here. linkedin
JSF MySQL CRUD Create Read Update Delete Project-JSF Tutorial Part 10
This tutorial shows a simple Create Read Update Delete project in Java Server Faces JSF. Mysql is used as database here and the IDE used is NetBeans Project structure in NetBeans Mysql Database Data DB_connection.java package com.chillyfacts.com; import java.sql.Connection; import java.sql.DriverManager; public class DB_connection { public static void main(String[] args) throws Exception{ DB_connection obj_DB_connection=new DB_connection(); …
java.lang.ClassNotFoundException: com.mysql.jdbc:Driver [Solved]
The Exception in Java Project is shown below. java.lang.ClassNotFoundException: com.mysql.jdbc.Driver at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:252) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at Simple.MyProg.main(MyProg.java:15) Solution, Download the Mysql Jar from below link. https://chillyfacts.com/mysql-connector-jar-download/ Add the jar to Classpath. Check the below link to add the Jar in …
Solution for ClassNotFoundException-How to add jar file in eclipse java project
This tutorial shows how to add java jar to Class path of Eclipse project. This is same process for all java Projects including Java Web Project or Any static project. If Java jar file is not imported for specific projects you will get ClassNotFoundException Exception. So adding jar to class path is the solution for …
Add Captcha in JAVA JSP Pages
Download the project here Captcha.rar