Essential Programming Languages for Better Job Prospects

In today’s fast-paced and competitive tech industry, having a strong understanding of programming languages is essential for university students looking to secure better job offers. Employers seek candidates who possess…

Launcher4j – This application requires a Java Runtime Environment 1.6.0

The reason for this error could be that you don’t have Java at all in your PC or JAVA_HOME and PATH variables are not set up properly. In my case,…

How to implement MVVM architecture in Android?

What is MVVM? MVVM stands for Model, View, View Model. Why MVVM? Makes the code more understandable with every class like adapters, model, View Model in a separate package. Makes the code maintainable…

Fixing “Class has two properties of the same name” exception

I started to learn JAXB from Vogella tutorial site. I changed the package and project name, and running the example generated following exception. Solution: After some googling I figured out,…

How to set JAVA_HOME environment variable for root user on AIX?

person sticking a post it on a white board with the words how to written on it

If you are following my previous post about installing Java 6 64bit on AIX 6.1 platform, next you have to set JAVA_HOME and PATH variables. If you want to set environment variables…

How to install Java 6 (Java6_64.sdk) on AIX 6.1?

This tutorial is about installation of Java6 64bit on AIX 6.1 platform. 1. Obtain the installer archive for Java6 64bit (Java6_64.sdk.6.0.0.385.tar). 2. Extract the tar file in the same directory…

FUD: JDBC addiction and designing software for NoSQL

I am having a background of programming Java based web systems with RDBMS. Where I write a lot of JDBC code. Updates, select statements with a lot of joins, inserts…

How to find mime type of a file in Java

person sticking a post it on a white board with the words how to written on it

Validating a file when it is getting uploaded in the system is some time very necessary. We can check the extension of the file, but what if user has changed…

Calling Posterous API in Java

person sticking a post it on a white board with the words how to written on it

I was playing with Posterous API to call it in Java program. If you guys want to call Posterous API, you need to get API Token from Posterous API Docs…

Struts 2 Spring integration: a kickstart on using dependency injection

In this post you will find how we can integrate Spring with Struts2 through struts2-spring-plugin. And we will also see how we can use dependency injection. I assume that you…