4 Critical Tips to Learn Programming Faster

4 Critical Tips to Learn Programming Faster
Are you experiencing difficulty to pick up programming Skill? Well not any longer! Having the capacity to code is a fundamental skill on the off chance that one needs to get into the IT field. It is a skill that is usually out of each IT engineer....

How Really Java is Platform Independent

How Really Java is Platform Independent
Probably the first thing that is written anywhere about java is that it is a platform independent language. Have you ever wondered that what is meant by platform independent? How java is platform independent? Why other programming languages lack this...

How To Make a Age Calculator in Java

How To Make a Age Calculator in Java
This is a age calculator made in java, it's a console application by the way :) source : import java.util.GregorianCalendar; import java.util.Scanner; import java.util.InputMismatchException; public class age_calculator { public static void...

Java Port Scanner Full Source Code

Java Port Scanner Full Source Code
Here is the full source code : /*+---------------------------------Adeel Mahmood---------------------------------+*\ /*+---------------------------------Port Scanner----------------------------------+*\ /*=-------------------------adeelmahmood1982@ukonline.co.uk------------------------+*\ /************************************************************************************/ import...

How To Make a Line Break/New Line in Java

How To Make a Line Break/New Line in Java
Line Break or New Line : I hope you understand what it is, in HTML you use <br> tag to make a new line so in Java if you want to make a new line it's not that hard but it has several methods depends on the platform. Coming to the point, most...

How To Get Response Headers From a HTTP Request in Java

How To Get Response Headers From a HTTP Request in Java
With this Java program you can get the the response headers from a HTTP request. You may have seen HTTP headers in Google Chrome/Mozilla Firefox network feature in inspect element (it just automatically captures HTTP). All you have to do is run the...

How To Submit Software, Mobile App and Game On Softpedia

How To Submit Software, Mobile App and Game On Softpedia
Softpedia is a site where you can find computer programs and technology based articles. It's owned by SoftNews NET SRL, a Romanian company. It was launched in 2001. My programs have been reviewed by the Softpedia editors thrice. I submit my programs...

What is JDBC Driver and JDBC Architecture

What is JDBC Driver and JDBC Architecture
JDBC stands for Java Database Connectivity. JDBC drivers helps you to open database connection and to interact with it by executing SQL queries then receiving the results with Java. The Java.sql namespace that ships JDK has various classes with their...

How To Make Message Boxes In Java

How To Make Message Boxes In Java
Message boxes are used to display alerts and information messages to the user. It’s very easy to make Message Boxes in .NET languages, however in Java programming language it’s not very easy like in vb/c#. In Java we can use JOptionPane to display m...

How To Keep JFrame Always On Top

How To Keep JFrame Always On Top
Always On Top : It’s something that keeps the window on top, you might have seen in some programs they have a menu strip item called Always On Top when you enable it, it will keep the window on top most. You might have seen in Visual Basic or Visual...

Simple TinyURL API in Java

Simple TinyURL API in Java
I have been off for sometime for some issues anyway today we are going to see how to use TinyURL API in Java programming language.Well, to be honest theres nothing so serious I have imported Scanner to input, of course the GET request and some more to...

How Java Works

How Java Works
In Java programming language, all source code is written first in plain text files ending with the .java extension. Those source files are then compiled into .class files by the java compiler. A .class file doesn't contain code that is native to your...

Snippet : Using Regular Expressions in Java

Snippet : Using Regular Expressions in Java
This snippet helps you to use Regular Expression(Regex) in Java...

Snippet : Get ASCII Value For Every Characters

Snippet : Get ASCII Value For Every Characters
This snippet helps you to get the ASCII value for every character...

How To Execute Shell Commands and Print Results in Java

How To Execute Shell Commands and Print Results in Java
There are many ways to execute shell commands and print results in java I guess, the famous and the most used way is Runtime.getRuntime().exec you can find a good explanation for that from here. Coming to the point i am using the same way but little...

Syntax Highlighter For Blogger

Syntax Highlighter For Blogger
I have been using Alex Gorbatchev Syntax Highlighter for a long while now . someone requested me to write an article about using this syntax highlighter in blogger so here i go . Select a theme for the syntax highlighter , those links have previews...

How To Capture Entire Screen In Java

How To Capture Entire Screen In Java
Another quick tutorial on capturing your entire screen with java actually sometimes java makes me mad because sometimes i have to import loads of namespaces than c# or vb.net anyways , as usual to do something in system we import IO thingy yes we are...

How To List Down Countries In Java

How To List Down Countries In Java
Java is something what really impressed me than other programming languages anyways today we'll see how to list down all the countries and their country code . I don't know whether you know theres a small library called Locale in java.util namspace so...

Infographic : Brief History About Programming

Infographic : Brief History About Programming
Here is a Brief History About Programming in a form an infographic which i found while surfing over the web pages :) Click here to view the im...

How To Set Up Java In Windows

How To Set Up Java In Windows
I saw many people having problems in setting up the java compiler so I just thought of doing a tutorial on this so on here i am .. , first of all download the latest version of java by the way remember to download it from oracle website and not...