Results 1 to 2 of 2

Thread: .jar?

  1. #1
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default .jar?

    There is an open source java game at http://www.mojang.com/notch/j4k/l4kd/

    He gives the source code for the game at this page:

    http://www.mojang.com/notch/j4k/l4kd/G.java

    How do I turn a .java file into a .jar file?

    And how would I take this source code and add a multiplayer element to it?

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    By first compiling it, then zipping it up into a JAR (a .jar file is just a .zip file with a specific directory structure and some added metadata). JARs are typically created using the jar tool: simply jar -cf G.jar G.class.
    And how would I take this source code and add a multiplayer element to it?
    Uhm... well, you'd have to write more source Perhaps a Java tutorial is what you really want?
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •