Java

Decimal to Binary Converter in Java (Console Based)

Submitted by onyx_ash08 on
Today, we will try to create a Java program that enables the user input a DECIMAL number then it will convert to its BINARY equivalent value. If you remember, I posted a tutorial about a Java program that converts a decimal number to its octal value (you can read here). There are lot of sites from the Internet that you can download the program source code but in this tutorial, I made my own code

Simple Coffee Shop Business

Submitted by EmbuscadoGeoff on
Hi my name is Geoff Embuscado, a 2nd year BSIT student at Jose Rizal University and Im new to Sourcecodester and I want to contribute this JAVA APPLICATION project I made in JAVA APPLET subject. This is just a simple JAVA GUI Application I made using NetBeans. This is only a simple SWING GUI application. MABUHAY FILIPINO PROGRAMMER~!

ProgressBar Sample in Java

Submitted by borla26 on
This is a simple program made in Java, this description includes the program of having a progressbar that runs throughout the process which computes the length of the text. For suggestion kindly email me at [email protected], or find me on facebook: https://www.facebook.com/profile.php?id=100000906482768, https://www.facebook.com/xadrianne.

Whois Gui Application

Submitted by sunny047 on
import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.net.*; import java.io.*; public class Whois extends JFrame { JTextField t1; TextArea t2; JButton b1; FlowLayout f; JProgressBar pb; Timer timer; final static int interval = 1000; int cc=0; Whois(String s) { super(s); t1= new JTextField(30);