JavaFX UI Control Tutorial – Using PasswordField

 In this tutorial session, we will learn about yet another type of text control, the password field. The characters typed by a user are hidden by displaying an echo string. – Creating PasswordField if not using FXML.   PasswordField passwordField = new PasswordField();   passwordField.setPromptText(“Your password”);  – The value typed in the password field can … Read more

Setting up JavaFX working environment in Eclipse using Java/JDK version 15.0/16.0/17.0/18.0

 Hello Friends, In this tutorial session, I have explained the complete process of setting up a JavaFX working environment in Eclipse 2022 using JDK V18.0. The same method will work with other latest previous versions of JDK like 15.0/16.0/17.0. I have explained everything from scratch to avoid all types of confusion/doubts and to achieve error-free … Read more

How to use Tesseract OCR with Java? | Extract text from image

In this tutorial session, we are going to learn, how to use Tesseract OCR in java in eclipse?   Step 1: first, download the Tesseract OCR package and unzip/save it on your filesystem.  download link:  https://sourceforge.net/projects/tess4j/    Step 2: We will use maven dependency for Tesseract.  <dependency>     <groupId> org.bytedeco </groupId>     <artifactId> tesseract </artifactId>  … Read more

Creating a Simple Java Web application(Servlet/JSP) in Visual Studio Code to Deploy in Jetty Server

Hello Friends, I have created this tutorial for absolute beginners working with Java in VS Code. In this video tutorial session, we will learn to create a simple Java web application (servlet/JSP-based) by using the Maven extension in Visual Studio Code. I tried to explain the whole process of creating a web project in VS … Read more