Console Applications for Beginners
Here is a collection of Java programs for those who want to enter the world of Java programming. They serve as samples, showing how to use the J2SE API. They were written for only educational purposes, so can be downloaded to work on source codes. If you have questions, send me an e-mail .
My Encryptor
Encrypts a file with a simple method.
Classes: File, FileInputStream, FileOutputStreamdownload zip
My Grep
To search a regular expression in given files.A simple implementation
of 'grep' command in Unix operating system.
Classes: Pattern, Matcher, LineNumberReader, PrintWriter download zip
My Number Server
A number guess game -client/server application, that consists of a server which produces a random number and waits for connections from clients. Telnet can be used to connect to the server. Several clients can connect at the same time.Useful to understand the client / server architecture, use of Threads to manage several clients and TCP/IP & sockets.
Classes: ServerSocket, Socket, Exception, Thread, BufferedReader InputStreamReader, OutputStreamWriter, BufferedWriter, PrintWriter, Integer.download zip
