Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - library
Search - library - List

1、将jre文件夹复制到你本机所在的JDK下覆盖掉全部jre文件夹

2、将lib文件夹复制到你项目所在的lib,添加对应lib


import org.smslib.IOutboundMessageNotification;
import org.smslib.Library;
import org.smslib.MessageEncodings;
import org.smslib.MessageProtocols;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.modem.SerialModemGateway;
import java.util.List;


public class SendSms {
    public SendSms() {
    }


    public void sendSMS(String[] phoneNumber) throws Exception {
        Service srv;
        OutboundMessage msg;

        OutboundNotification outboundNotification = new OutboundNotification();

        srv = new Service();
        SerialModemGateway gateway = new SerialModemGateway("modem.com1",
                "COM1", 9600, null, null);
        gateway.setInbound(true);
        gateway.setOutbound(true);
        gateway.setSimPin("0000");
        gateway.setOutboundNotification(outboundNotification);
        gateway.setProtocol(MessageProtocols.PDU);
        srv.addGateway(gateway);

        try {
            srv.startService();

            for (int i = 0; i < phoneNumber.length; i++) {
                msg = new OutboundMessage(phoneNumber[i], "您有会议待处理,请登陆查看!");
                msg.setEncoding(MessageEncodings.ENCUCS2);
                srv.sendMessage(msg);

            }

        } finally {
            srv.stopService();
        }
    }

    public class OutboundNotification implements IOutboundMessageNotification {
        public void process(String gatewayId, OutboundMessage msg) {
            System.out.println("Outbound handler called from Gateway: " +
                               gatewayId);
            System.out.println(msg);
        }
    }


    public static void main(String args[]) {
        SendSms app = new SendSms();
        try {
            app.doIt();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
 


Date : 2009-01-03 Size : 1015.8kb User : idhuanghao

摩托罗拉手机界面库LWT的文档 开发JAVA手机的朋友,快下哦-Motorola phone interface library Local Walsh Transform document the development of Java phones friends, fast under oh
Date : 2025-12-30 Size : 277kb User :

ASP实用函数库 书籍语言: 简体中文 书籍类型: 网络编程 授权方式: 免费软件 书籍大小: 55 KB -ASP practical library books Language : English books categories : network programming license : free software books Size : 55 KB
Date : 2025-12-30 Size : 19kb User :

java/C#的移动程序设计一书的全部源码,是我托人在图书馆下的哦,由于文件名的问题,须将zip结尾去掉,改为ISO结尾 好东西啊!~-java/C# procedures for the movement of the design of an all-source, I was under the Trustee of the Library of oh, As the file name, zip should end removed and replaced ISO end of something good ah! ~
Date : 2025-12-30 Size : 7.55mb User : 李间

struts框架类库 请使用前看清楚strust是否有你想要的类-struts framework class library to use the former strust see whether the class you want
Date : 2025-12-30 Size : 13.81mb User : gabriel

J2ME in a Nutshell随书源码 图书语言: 简体中文 图书类型: 程序设计 >> 手机开发下载 授权方式: 免费手机开发图书 图书大小: 181 KB -J2ME in a Nutshell Library books source language : English Books types : program design
Date : 2025-12-30 Size : 165kb User : 王敏

A Java Framework for connecting to and exchanging data from GPS units to J2ME Mobile Devices. Serial and Bluetooth connections to GPS devices. Support for NMEA-0183 GPS Standard. An Observer-Design Pattern makes the library extendable. Based on GPSlib4j.-A Java Framework for connecting to and exch anging data from the GPS units to J2ME Mobile Device s. Serial and Bluetooth connections to GPS devi ces. Support for NMEA- 0183 GPS Standard. An Obs servers- Design Pattern makes the library extend able. Based on GPSlib4j.
Date : 2025-12-30 Size : 3.22mb User :

利用SyncML开发客户端程序的中间件,J2ME版本。 This library is a collection of basic utilities for: object serialization and persistence on the RMS, Logging and string manipulation. This document describes the Funambol JavaME Common API library, which purpose is giving support and providing basic functionalities to all the other components developed for the J2ME platform. These functionalities are: a persistent data storage framework, a logging framework, a framework to read different streams of byte, a thread monitoring system and a set of classes useful for data encoding and string manipulation. This library may grow in future, as new functions will be seen as common to different J2ME components. -Use SyncML client program to develop middleware, J2ME version. This library is a collection of basic utilities for: object serializationand persistence on the RMS, Logging and string manipulation.This document describes the Funambol JavaME Common API library, which purpose is giving support and providing basic functionalities to all the other components developed for the J2ME platform. These functionalities are: a persistent data storage framework, a logging framework, a framework to read different streams of byte, a thread monitoring system and a set of classes useful for data encoding and string manipulation. This library may grow in future, as new functions will be seen as common to different J2ME components.
Date : 2025-12-30 Size : 370kb User : 宋树

The Funambol J2ME Mail Client aims to be a light, easy to use, free email client for J2ME devices. The first release comes with a simple but effective UI, and a storage limited to the internal RMS only. This makes the application compatible with most of the phones around (minimum requirements are: MIDP2.0, CLDC 1.0, 512k of Storage). The mail synchronization using SyncML 1.2 over HTTP, thus removing any problem related to the access to IMAP or POP ports. The mail client synchonizes its address book with the one on the server, Its design is modular and can be extended in future with other mail protocols, a more sophisticated UI and access to the phone s AddressBook or filesystem for the devices allowing this. See the javadoc for more information on the structure of the library.-The Funambol J2ME Mail Client aims to be a light, easy to use, free emailclient for J2ME devices.The first release comes with a simple but effective UI, and a storage limitedto the internal RMS only. This makes the application compatible with most ofthe phones around (minimum requirements are: MIDP2.0, CLDC 1.0, 512k ofStorage). The mail synchronization using SyncML 1.2 over HTTP, thus removingany problem related to the access to IMAP or POP ports.The mail client synchonizes its address book with the one on the server, Its design is modular and can be extended in future with other mailprotocols, a more sophisticated UI and access to the phone s AddressBook orfilesystem for the devices allowing this.See the javadoc for more information on the structure of the library.
Date : 2025-12-30 Size : 410kb User : gaoyuesong

DL : 0
利用J2me实现的移动图书馆。针对高校学生开发的一款图书借阅软件。-The realization of the use of J2me mobile library. For college students developed a software library to borrow.
Date : 2025-12-30 Size : 1.78mb User : 彭烨

BT JAVA LIBRARY,BTLib package is a J2ME Bluetooth library usefull when developing applications for Java, Bluetooth enabled mobile devices.
Date : 2025-12-30 Size : 58kb User : zlj613

DL : 0
Move2008 J2ME SDK是Move2008开发团队在平时的开发中研究出的一个非常精简的类库,它主要是为游戏服务的。由于各程序员代码风格有很大区别,小团队的标准化工作也不健全,因此开发协作往往效率很低,代码可读性差,每次开发一个游戏都要从头开始写代码等等问题。Move2008开发团队意识到这个问题的严重性,因此Move2008 SDK与Move2008 J2ME开发规范相结合,为解决上述问题。Move2008 J2ME SDK是开放的,任何人都可以随意使用、修改、传播-Move2008 J2ME SDK is Move2008 development team in the normal development of a very concise study of the class library, it is mainly for gaming services. As a result of code programmers have very different styles, the standardization of the small team is not perfect, so the development of collaboration are often inefficient, code readability worse, each time developing a game began to write code from scratch and so on. Move2008 development team aware of the seriousness of the problem, so Move2008 SDK and the development of norms Move2008 J2ME combining, in order to address these issues. Move2008 J2ME SDK is open, anyone can freely use, modify, disseminate
Date : 2025-12-30 Size : 68kb User : 马宣

Its a small library for decompress gzip files in j2me. The final size after obfuscation and jaring is less than 2150 bytes.
Date : 2025-12-30 Size : 303kb User : gust

DL : 0
Zaval Light-Weight Visual Components Library (LwVCL) is a pure Java alternative to humble AWT-based GUI interfaces for wide ranges of platforms, including J2SE, PersonalJava and J2ME(coming soon). LwVCL can be used on Zaurus, iPAQ and other devices. -Zaval Light-Weight Visual Components Library (LwVCL) is a pure Java alternative to humble AWT-based GUI interfaces for wide ranges of platforms, including J2SE, PersonalJava and J2ME (coming soon). LwVCL can be used on Zaurus, iPAQ and other devices .
Date : 2025-12-30 Size : 2.78mb User : Thomas Yip

DL : 0
这是一个j2me开发的手机图书馆程序,里面包括了手机客户端和服务端程序。-This is a j2me development of mobile library program, which includes the mobile client and the server process.
Date : 2025-12-30 Size : 1.58mb User : liyongsheng

DL : 0
一个蓝牙通信对战五子棋的J2ME游戏源代码,蓝牙类库在JSR082包中实现-A Bluetooth communications war game Gobang the source code of J2ME, Bluetooth class library to achieve the JSR082 package
Date : 2025-12-30 Size : 9kb User : Yanyx

DL : 0
FIRE (Flexible Interface Rendering Engine)是一个J2ME上的灵活的图形界面引擎,支持xhtml网页渲染。-File (Flexible Interface Rendering Engine) is a library that aims to provide a set of easy-to-use extendable components to J2ME developers
Date : 2025-12-30 Size : 801kb User : Olnex

DL : 0
API jymsg but i m covert it to j2me so you can make your own Yahoo Messenger in your mobile, so simple to use
Date : 2025-12-30 Size : 101kb User : SofTech

DL : 0
国外J2ME游戏代码,附带midp1,midp2,nokia等库-Foreign J2ME game code, incidental midp1, midp2, nokia and other library
Date : 2025-12-30 Size : 1.75mb User : lkjx

利用J2ME无线通讯技术实现一个简单的手机图书馆的包括查询借书等基本功能.-A good sample code for learning J2ME development using Eclipse and WTK.
Date : 2025-12-30 Size : 516kb User : 路新江
« 12 3 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.