Have you ever thought about to index all of your entire filesystem in a database with file meta info, it’s contents? Or, have you faced any problem that will require you to search and run some queries to find documents or contents from your large file system? It’s a common experience we all face. May be I am right, you face it too. To crawl file system and index all the files, it’s meta info and contents fscrawler is a …
Tag: java
Java is one of the most popular programming language in the world. It’s also one of the oldest programming languages. Due to it’s huge library and extensive community, it’s one of the best used language I have ever seen. However, I am not an advanced Java programmer but I brought some pieces from everywhere and build a small things that helped me to work with one of my practice project easily. Date time conversion in Java Working with date and …
Retrofit is an awesome and easy to use library. You can use Retrofit for any Android or Java application which need to interact with our OAuth2.0 server to get access token. You just need to build the retrofit properly to get it done. It doesn’t require any advance knowledge. Let’s see how it can be done easily. To get the access token using Retrofit we need to do – Add Retrofit in your project via Maven or Gradle. Complete installation …
There are lots of application out there who has the functionality to block call and SMS. I assume, you also want to develop an application where you can block SMS in android as well as block call in android. It’s a common use cause. But most of the time it’s not that much easy as you are thinking. With the latest version upgrade and other policy implemented inside android operating system that requires you to tweak your code base if …