Đang chuẩn bị liên kết để tải về tài liệu:
Core J2ME™ Technology & MIDP phần 2

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

Hãy tạo một MIDlet đồng hồ báo thức đơn giản (xem ví dụ 7.2). Ứng dụng này sẽ cho phép người sử dụng để xác định một ngày và thời gian, và sẽ âm thanh báo động và hiển thị thông báo khi thời gian chỉ định đã đến. Để thực hiện điều này ví dụ thực tế hơn một chút, tôi đã bao gồm hai thành phần mà chúng ta | Simpo PDF Merge and Split Unregistered Version - http www.simpopdf.com Example 4.6 WelcomeBack.java package corej2me import javax.microedition.midlet. import javax.microedition.lcdui. public class WelcomeBack extends MIDlet implements CommandListener Example 4.7 manifest. txt MIDlet-Name Welcome Examples MIDlet-Version 1.0 MIDlet-Vendor Core J2ME Technology MIDlet-1 Example1 resources spin.png corej2me.Welcome MIDlet-2 Example2 resources spin.png corej2me.WelcomeBack MicroEdition-Profile MIDP-1.0 MicroEdition-Configuration CLDC-1.0 Example 4.8 Welcome.jad MIDlet-Name Welcome Examples MIDlet-Version 1.0 MIDlet-Vendor Core J2ME Technology MIDlet-Description Two MIDlets in a suite MIDlet-Jar-URL Welcome.jar MIDlet-Jar-Size 2918 MIDlet-1 Example1 resources spin.png corej2me.Welcome MIDlet-2 Example2 resources spin.png corej2me.WelcomeBack Note the changes to the MIDlet-1 and MIDlet-2. The class files are now referenced using the package name corej2me.Welcome and corej2me.WelcomeBack. If you choose to leave out the images simply remove the reference as shown below. Any whitespace between the commas will be ignored. MIDlet-1 Example1 corej2me.Welcome MIDlet-2 Example2 corej2me.WelcomeBack Compile and Pre-verify 1. Compile the source javac -bootclasspath c j2me midp1.0.3fcs classes -d jclasses .java 43 Simpo PDF Merge and Split Unregistered Version - http www.simpopdf.com -d option tells the compiler to write the classes files into the directory that we created jclasses. 2. Pre-verify the Java class files preverify -classpath c j2me midp1.0.3fcs classes -d pclasses jclasses -d option tells the pre-verifier to store the verified classes in the directory pclasses. The last entry on the line jclasses tells the pre-verifier where to look for classes to verify. Create the JAR 1. Run the jar executable to create the archive file jar cvfm Welcome.jar manifest.txt -C pclasses . resources This creates a JAR file called Welcome.jar using the file manifest.txt as the contents of the

TÀI LIỆU LIÊN QUAN
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.