Jag hade tänkt att testa att göra lite java-program till min mobil... men jag vet inte riktigt vart jag ska börja. Tjena. Jag fyller väl på jag... Nu har jag laddat ner J2MEWTK2 och Sun ONE Studio 4 ME. Är det dom programmen jag behöver? Oj, jag hade missat ditt svar. du använder den "vanliga" javac från j2sdk samt anger j2me filerna i -bootclasspath tror jag att det var Tjena. Jag kompilerade med hjälp av Toolkit när jag gjorde mina grejer, men om du har en ME editon på din Sun One så bör det finnas stöd för att sköta detta direkt genom IDE:n.J2ME
Vilka program behövs?
ThomasSv: J2ME
Vet inte vad du ska göra för något... men har en länk och bra tutorial på Tanks(nått pansarvagns spel)
http://developers.sun.com/techtopics/mobility/midp/articles/game/
Du behöver om du inte redan har det j2me paketet för att utveckla:
http://java.sun.com/products/j2mewtoolkit/index.html
Om du vill ha lite free downloads av spel och utils (eller bara lite inspiration) så finns massor på:
http://midlet.org
Peter :-)Sv: J2ME
Om det stämmer så skulle jag vara tacksam för ett grundligt exempel... för just nu förstår jag absolut ingenting av det här =)
Det enda jag vet är att den färdiga produkten ska bli en jar-fil.
ThomasSv: J2ME
/* License
*
* Copyright 1994-2004 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistribution of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistribution in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of Sun Microsystems, Inc. or the names of contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any kind. ALL
* EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
* ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN")
* AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
* AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
* DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
* REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
* INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
* OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
* EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that this software is not designed, licensed or intended
* for use in the design, construction, operation or maintenance of any
* nuclear facility.
*/
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
public class HelloMIDlet
extends MIDlet
implements CommandListener {
private Form mMainForm;
public HelloMIDlet() {
mMainForm = new Form("HelloMIDlet");
mMainForm.append(new StringItem(null, "Hello, MIDP!"));
mMainForm.addCommand(new Command("Exit", Command.EXIT, 0));
mMainForm.setCommandListener(this);
}
public void startApp() {
Display.getDisplay(this).setCurrent(mMainForm);
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command c, Displayable s) {
notifyDestroyed();
}
}
Sv: J2ME
Men nu är frågan, vilka program ska jag använda för att kompilera koden?
ThomasSv: J2ME
Sv: J2ME
Sen är det bara att deploya via IR, kabel eller vad du nu har för metod att deploya på... :-)