Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: VB can do stuff Java can`t ??

  1. #1
    Junior Member
    Join Date
    Sep 2009
    Location
    Romania
    Posts
    13
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Unhappy VB can do stuff Java can`t ??

    Well... I`m going right to the subject :

    Would it be possible to make a game trainer or a keylogger in Java ?

    I was looking for programming stuff on YouTube. Then I found something like "how to make a trainer in vb...".
    It sounded interesting, so I searched for trainers or keylogger in Java, but I couldn`t find anything.
    And I`m very curious about it. So, VB could do this, and Java couldn`t ?

    Thanks in advance !


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: VB can do stuff Java can`t ??

    In a sense, Java has a Robot class that lets you send key-strokes/mouse movements. As for key-logging, you would need to use JNI in order to capture key-presses simultaneous with the game. Trainers so far as I can tell don't come from messing with the memory, but messing with saved game files and such. Java can do this, but you had better make sure you mess with the correct files in the correct way or else you'll ruin your game.

  3. #3
    Junior Member
    Join Date
    Sep 2009
    Location
    Romania
    Posts
    13
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: VB can do stuff Java can`t ??

    Cool !

    Thanks, I`m feeling relieved.