Skip to main content

Posts

Showing posts with the label Java

Featured Post

Data Mining with Weka -Installation

Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka  You can download Weka from   here   and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.

Getting Started with WebDriver in Java Using IntelliJ on Windows

 1. Create a New JAVA Hello World Project 2.  Add Framework Support for Maven.  Click Right on Project and Add Framework support for Maven 3. Click on Import maven Option on bottom left corner 4. Add following dependency after <version> </version> <dependency> <groupId> org.junit.jupiter </groupId> <artifactId> junit-jupiter-api </artifactId> <version> 5.1.0 </version> <scope> test </scope> </dependency> <dependency> <groupId> org.seleniumhq.selenium </groupId> <artifactId> selenium-java </artifactId> <version> 3.141.59 </version> </dependency> </dependencies> 5. Download chrome driver according to your browser version https://chromedriver.chromium.org/downloads 6. Extract driver to the project folder 7. Go to File -> Project Structure -> Module -> Add JARs or Directories  And add libr

JAVA Eclipse Tutorials - Hello World!

1. First program Install java and Eclipse Then follow the Steps: File-New-Java Project- Enter Project Name- Finish Go to Project Name you Entered -File-New Class- Application public class Application {                                        //Class name same as java file name public static void main(String[] args) {           //Main method String text ="Hello World !";                 //String data type System.out.println(text);                        //print method } } OUTPUT:  Hello World !