Top 10 Twitter Trending Topics using JAVA twitter4j API

Hi friends, Today we are going to find out the Top 10 Worldwide Trending Topics on Twitter with the help of twitter4j Java API. The step by step process can be depicted in below picture. It shows the step by step algorithm which you can use in order to show top 10 Worldwide Trending Twitter Topics.ContinueContinue reading “Top 10 Twitter Trending Topics using JAVA twitter4j API”

Twitter Sentiment Analysis using OpenNLP JAVA API

Hi, everyone ! Hope everyone is having a great time. In this post, we are going to see the TWITTER SENTIMENT ANALYSIS by using JAVA as a programming language. We are using OPENNLP Maven dependencies for doing this sentiment analysis. Following is that Maven Dependency. https://gist.github.com/milindjagre/1e25abcf007725e5119b484bac0c77c3 As you can see from the above pom.xml file,ContinueContinue reading “Twitter Sentiment Analysis using OpenNLP JAVA API”

Read Word Document using JAVA

Hi guys, Following code will enable us to read Microsoft Word Document file using JAVA API. https://gist.github.com/milindjagre/8495bd3ec78d9ad172d31f5eebf0689b Following is the pom.xml contents https://gist.github.com/milindjagre/7e3c444e55a87d00fdfc9fe053bbc0cf Following is the word file contents   Following is the output of code.   Thanks for having a read. Do comment below for your queries.

NetBeans IDE Installation on Ubuntu 14.04

Download NetBeans IDE through web browser from https://netbeans.org/downloads/ open new terminal window cd Downloads sudo chmod +x netbeans* ./netbeans* Above command will open a GUI which will guide you to install netbeans step by step.  

RECORD INSERTION IN MYSQL TABLE

We are going to insert the data into mysql table ‘sample’. We will use Java programming language for doing the same.   In case you missed how to connect your database with the JAVA programming language, you should refer this link below. https://milindjagre.wordpress.com/2014/04/25/mysql-database-connection-through-java/   Once you establish the connection with MySQL database, all you needContinueContinue reading “RECORD INSERTION IN MYSQL TABLE”

MYSQL DATABASE CONNECTION THROUGH JAVA

MySQL can be connected with the help of JAVA programming language. For this we require a driver which will enable us to create a connection to connect to MySQL database. A connection object is created with the help of getConnection() method of DriverManager class. The standard syntax of this getConncetion() method contains one, two andContinueContinue reading “MYSQL DATABASE CONNECTION THROUGH JAVA”

COMMAND LINE ARGUMENTS

  The concept that we are going to talk today is about printing i.e. accessing the elements or arguments that we enter on the command line in the runtime. There are plenty of ways to implement this thing. For naïve programmers, we can use the simple editor and then run the program on the commandContinueContinue reading “COMMAND LINE ARGUMENTS”

The difference between float and double

Thank you. We all know float and double as the primitive datatypes of any programming language. But plenty of us still get confused regarding the basic meaning of these datatypes. In technical terms, float is known as the Single precision floating point datatype whereas double is considered to be double precision floating point datatype.  ContinueContinue reading “The difference between float and double”