Archive for the ‘Java’ Category

This is my FPS camera class for my application in computer graphics lecture. Oh yeah, i’m using Java and OpenGL (jOGL) Camera object is used to store coordinate information and direction of viewing. Object camera has three normal vectors as a constituent component of direction-vector, up-vector, and right-vector. This third vector perpendicular to each other. In [...]

JCIFS Example Functions

Posted: June 25, 2009 in Java, Programming
Tags:

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java. CIFS is the standard file sharing protocol on the Microsoft Windows platform (e.g. Map Network Drive …). This client is used extensively in production on large Intranets. Source : http://jcifs.samba.org/

In cryptography, MD5 (Message-Digest algorithm 5) is a widely used cryptographic hash function with a 128-bit hash value. As an Internet standard (RFC 1321), MD5 has been employed in a wide variety of security applications, and is also commonly used to check the integrity of files. However, it has been shown that MD5 is not [...]

Simple Socket Program Using Java

Posted: April 22, 2009 in Java, Programming
Tags: ,

In this program, i’m using Netbeans 6.5 IDE The client program presents a simple user interface and prompts for text input. When you click the “Send Message” button, the text is sent to the server program. The client program expects an echo from the server and prints the echo it receives on its standard output. [...]

Title : Data Structures & Algorithms in Java Author: Mitchell Waite Date: 1998 Language: English Publisher: Sams Size : 3124 KB DOWNLOAD HERE !!!

Simple Thread di Java (2)

Posted: January 26, 2009 in Java, Programming
Tags: ,

Nah, berikut ini contoh penggunaan thread lainnya :

Simple Thread di Java (1)

Posted: January 25, 2009 in Java, Programming
Tags: ,

Thread dalam ilmu komputer adalah singkatan dari “thread of execution”, didefinisikan sebagai sekumpulan instruksi yang dapat dieksekusi secara paralel dengan thread lainnya, dengan menggunakan metode time slice (ketika satu prosesor melakukan perpindahan antara satu thread ke thread lainnya) atau multiprocess (ketika thread-thread tersebut dieksekusi oleh prosesor yang berbeda dalam satu sistem). Thread sebenarnya mirip dengan [...]

Sebenarnya kedua paket ini sangat gampang untuk diinstall lewat repositori, caranya : sudo apt-get install sun-java6-bin sudo apt-get install netbeans Nah, yang saya akan bahas disini adalah menginstall kedua paket tersebut secara manual, tidak lewat repositori.

(Java GUI) Splash Screen

Posted: August 1, 2008 in Java, Programming
Tags: ,

Jframe memiki kemungkinan untuk dijadikan sebuah splash screen, tapi, sebaiknya kita menggunakan JWindow. Komponen ini didesain untuk membuat window tanpa title bar, sama seperti splash screen. Untuk membuat splash scree, ada tiga langkah. Pertama, kita harus menampilkan sesuatu di splash screen tersebut, bisa saja teks ataupun gambar. kedua, kita set posisi dari splash screen tepat [...]

(Java) Tower of Hanoi

Posted: July 31, 2008 in Java, Programming
Tags: ,

He he he..now, i make Tower of Hanoi in Java Language, if you want more explanation about what is Tower of Hanoi, click HERE.