Tag Archive For "CMD"
Create new MySQL user for your Database and Grant all privileges
This tutorial shows how to create a new user for MySql and Grant all privileges to the user. First lets check how many users is present for MySql now. It will be present in user table in MySql database The command for seeing the user available is select user,host,password from user As per the result …
Copy Mysql database from one server to another server
This tutorial shows how to transfer Mysql Database from one server to another server without any software. In this tutorial we are transferring our Local host server database to a server located remotely hosted in freemysqlhosting.net. Click here to see how you can register free to get remote MySql database online. The image below shows my …
Run-Command-Prompt-CMD-commands-from-JAVA
This tutorial shows how to Execute Command Prompt Commands from JAVA, Copy the below two classes to same package cmd_prompt Now run the my_main.java as Run as Java Application 1. my_main.java 2. SyncPipe.java 1. my_main.java package cmd_prompt; import java.io.PrintWriter; public class my_main { public static void main(String[] args) { String[] command = { “cmd”, }; …
Convert image to text using CMD Command Prompt, Tesseract Optical Character Recognition (OCR)
Here is the steps you need to convert the image to text using CMD. See OCR Java Web Project here. 1.Download and Install the Tesseract ‘tesseract-ocr-setup-3.02.02.exe’. You can download that in the below link. Download tesseract-ocr-setup files here Install in any location you want, Eg. C:\OCR 2.After installing verify all the below files are available in …