Programming and Tech Tips For All To Use

Programming and Tech Tips For All To Use
Programming and technology points have been rather prevalent and important to explore over the years. There is a clear need to take a look at such programming plans can be used in any spot though. There are a few sensible tips that may be used today...

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...

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...

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 Make Beeb Sound On Each Word In Java

How To Make Beeb Sound On Each Word In Java
hello guys , so you all know what is a beeb sound so on in vb.net or c-sharp it's veru easy to make beeb sound. if you want to make beeb sound in vb.net here is the code Microsoft.VisualBasic.Interaction.Beep() if you want to make beeb sound...

How To Make A Addition Calculator In Java Using JOption

How To Make A Addition Calculator In Java Using JOption
Okay guys today i will be teaching you how to make a simple addition calculator using Joption in java, I saw someone wrote some codes to calculate addition also it uses Java Scanner. This is that program . import java.util.Scanner; class basic_cal { ...

How To Print A Triangle In Java Using For Loop

How To Print A Triangle In Java Using For Loop
hello guys , i remember what kind of homeworks in java students get at the start so i started to post solutions in this even i had to do this when i was doing java (a diploma) our sir asked us to make a program that prints out a triangle using For...

How To Make A GUI(Graphical User Interface) In Java

How To Make A GUI(Graphical User Interface) In Java
heyy guys !! i am back with java .. , so today i am gonna teach you how to make a your very first java GUI program after that i will write more tutorial on adding controls to the interface and giving click events .. , first of all open your favorite...

How To Create And Write A Text File In Java

How To Create And Write A Text File In Java
We will see how to create and write a text file in java so basically you get the idea after reading the title whatever when you run this program it creates a txt file and write some text inside so lets start making it , i am doing this in text editor...

Starting With Java Programming

Starting With Java Programming
In this post I will tell you what I know about java and how to make a hello world program in java ok, now java is a great programming language, it was introduced in 1995. From my experience java is nothing without classes because everything works...