Posts

Top 16 Java Utility Classes

In Java, a utility class is a class that defines a set of methods that perform common functions. This post shows the most frequently used Java utility classes and their most commonly used methods. Both the class list and their method list are ordered by popularity. The data is based on randomly selected 50,000 open source Java projects from GitHub. Hopefully, you can get a basic idea of what are already provided and popular by browsing the list so that you know you don't need to program it by yourself. The names of the methods normally indicate their functions. You may also click on the methods to see how they are used in open source projects. >>   Click here for more details with example

Tips and Tricks for Ubuntu after Installation.

Ubuntu is a free operating system or a Linux distribution ("distro") which currently receives the second highest hits after Linux Mint at DistroWatch. The recent versions of Ubuntu have used Unity as a default user interface for the GNOME-3 desktop environment. If you have installed a new version of Ubuntu operating system with the Unity user interface on your PC, you might find these tips and tricks useful for working with the system. Looking for a desktop interface with a start menu that looks closer to the traditional Windows system? Then give Linux Mint a try and check out Tips and Tricks for Linux Mint 17 Cinnamon Edition or MATE Edition. Note: The tips and tricks included in this article work well with Ubuntu 14.04 (LTS) to 15.04 >>   Click here to view list of tips and tricks

Java Restful Service Tutorial

REST stands for Representational State Transfer, was first introduced by Roy Fielding in his thesis"Architectural Styles and the Design of Network-based Software Architectures" in 2000.  REST is an architectural style. HTTP is a protocol which contains the set of REST architectural constraints. REST Fundamentals Everything in REST is considered as a resource. Every resource is identified by an URI. Uses uniform interfaces. Resources are handled using POST, GET, PUT, DELETE operations which are similar to Create, Read, update and Delete(CRUD) operations. Be stateless. Every request is an independent request. Each request from client to server must contain all the information necessary to understand the request. Communications are done via representations. E.g. XML, JSON >>   See Video Tutorial Here

Complete Guide To Deploy Java Web Application in Amazon Ec2 using Eclipse

Hi readers, Today I'm going to show you how to deploy simple java web application in amazon EC2 using Eclipse IDE.Before we begin we need some required things, Eclipse Java EE IDE - You can download in http://www.eclipse.org/downloads/ (Im using Indigo version) Amazon Ec2 account - http://aws.amazon.com/ec2/ (Free account is enough) Some basic understanding about java web application ok, lets start, here we go.... >>   Click here for detail steps with screenshot

Amazon EC2 Setup with Ubuntu and XAMPP Installation

I had published an article about Amazon Cloud installation, nowadays Amazon Web Services is offering 12 months free trial for micro instance with 700 MB RAM. Now they simplified few interface setting for installation process, this post will explain you how to setup an Amazon micro instance with Ubuntu operating system and XAMPP server. Try this for your first web project. >>   Click here for detail steps with screenshot >>   Amazon EC2 Cloud Installation.

RESTful API Example using JAVA and AngularJS $http

In this tutorial, we will learn to use Angular  $http  service to invoke RESTful APIs (HTTP GET, PUT, POST, DELETE) operations. Additionally, we will use the responses from RESTFul APIs to refresh the screen data used in this example. >>  Click here to view detail step with Demo example >>   Another demo example with source code

What Is JavaFX?

Introduction JavaFX is a set of graphics and media packages that enables developers to design, create, test, debug, and deploy rich client applications that operate consistently across diverse platforms. JavaFX Applications Written as a Java API, JavaFX application code can reference APIs from any Java library. For example, JavaFX applications can use Java API libraries to access native system capabilities and connect to server-based middleware applications. The look and feel of JavaFX applications can be customized. Cascading Style Sheets (CSS) separate appearance and style from implementation so that developers can concentrate on coding. Graphic designers can easily customize the appearance and style of the application through the CSS. If you have a web design background, or if you would like to separate the user interface (UI) and the back-end logic, then you can develop the presentation aspects of the UI in the FXML scripting language and use Java code for the applica...

Top 4 Popular Java Development Frameworks

[1] Play It’s a powerful and lightweight open source web development framework, loved by thousands of developers all over the world for its scalability, speed and performance. It uses the Java and Scala programming languages and if you have knowledge in Scala, it should not take more than an hour to get used to with this framework. The user interface of Play is simple and intuitive, thus it does not take time to understand the basic features. One of the key features of Play is that you don’t need to compile your codes, just deploy and restart. While developing an app, you can easily see the new changes by simply hitting the refresh button. This feature saves a lot of time during web development. It has just one config file and rest of the configuration is done automatically. Play also comes with testing tools that let developers test their application within the framework. However, Play is not flawless. It has some weaknesses and one of them is version incompatibility. For e...

Here is a solution for Skype group chats are not showing in ubuntu 14.04 and skype 4.3.0.37

Skype group chats will not work on the current version of Skype (It is a  known bug  reported on their forums for Linux users &  other places ). You can voice talk, but typing something or having actual access to the chat will not work. I have encountered the same problem and I found the solution in Skype forum: To solve this   issue, type below command on any chat window: /msnp24 after that hit enter and logout once and login again now you will able to show all your group chats.

How to create exe of java application using launch4j and inno setup compiler

A small quick demonstration to show how you can make setup.exe file from your java .jar application by bundling jre(java run time environment) along your application and making a setup.exe executable file. using launch4j and inno setup compiler ,your application need not download jre from internet since it is already bundled into one full package. >>   You can download launch4j from here >>   You can download innoset up from here >>   View video for step by step guide