Home
    WELCOME
    CONTACT ME

Visitor Features
    YOUR INFO
    BOOKMARK
    NET LINKS

C++ Classes
Library Source Codes:
    CGIPARSE
    JSTRING
    JVECTOR
    JSTACK
    JHASHTABLE
    ASP STACK
    ASP QUEUE
    ASP VECTOR

Tutorials:
    ALGORITHMS
    SOFTICE
    NT REGISTRY
    UNIX
    CRACKING

Sample Works

    JAVA TALK
    WEB CAM


    L0PHTCRACK
    GETADMIN
    TKCMOS
    HTTPORT
    +VIC
    REGMON
    REVEALER
    +ERLIS
    SOFTICE32
    HEXWSHOP

Personal
    CONTACT ME
    RESUME
    PICTURES
    QUOTES
    ASCII ART


JString

Download

Design of the Library :
Programming in both the Java and C++ as well as UNIX and NT we found ourselves with a various problems that perhaps is common among other developers and programmers. One problem was porting a C++ program to Java or vice-versa. During such conversions, the string manipulation in C++ and Java were not similar and as a result the conversion process was non-intuitive and cumbersome. Another problem was using a specific string class in C++ for many weeks and then when switching over to the Java language -- simply programming with the Java string class was a re-learning process with various visits to the documentation of the library. Perhaps the most common of all problems, no string library available for the C++ compiler on UNIX at all! As a solution, they decided to create a JString library for C++ with the identical public specification as the Java String library (with only a few Java specific omissions). Using both libraries interchangeably with both languages and both platforms has solved all of my problems...and hopefully it will help others as well.

Public Functionality : The library is fairly simple in usage. You may visit the String class specification at JavaSoft