Welcome![Sign In][Sign Up]
Location:
Search - java pdu

Search list

[SMSSerial_SMS

Description: This serial client in JAVA allows sending, reading and writing of SMS via a serial COM port. The tool uses the PDU SMS format. IRDA drivers are included. The functionality can be implemented into applications for remote alerting or SMS authentification. -This serial client in Java allows sending, reading and writing of SMS via a serial COM port. The tool uses the PDU SMS format. IRDA drivers ar e included. The functionality can be implement ed into applications for remote alerting or SMS authentification.
Platform: | Size: 267890 | Author: firmament | Hits:

[JSP/Javajavasnmpv1v2v3

Description: 用java实现对snmp v1,v2,v3版本的选择,实现不同版本的pdu-with java achieve snmp v1, v2, v3 version of the choices and realize the different versions of the pdu
Platform: | Size: 6089 | Author: dhcc | Hits:

[Otherjiaohuanjimoni

Description: 编写本程序时,所使用的是传输层的UDP协议,不分服务器和客户端,采用对等实体的形似实现信息的传输。运用java.net.DatagramPacket类和java.net.DatagrameSocket类实现套接和数据的传输。并且采用组播形式进行数据信息的传递。使用三个简单协议数据单元(PDU),即JOIN PDU,LEAVE PDU,MESSAGE PDU。分别表示首次连接时组播的数据报、用户离开时组播的数据报,用户输入完消息时组播的数据报。-preparation of this procedure, which is used in the transport layer UDP, regardless of the server and client, used such entities to realize the huge information transmission. Java.net.DatagramPacket use category and java.net.Data grameSocket Class of molars and data transmission. And using multicast form of the transfer of data information. Use three simple protocol data unit (PDU), the PDU JOIN, LEAVE PDU. MESSAGE PDU. , Said the first link multicast data reported that users leave multicast data reported, End user input information on the multicast data reported.
Platform: | Size: 1451910 | Author: 水依 | Hits:

[JSP/JavaPDU

Description: /*_############################################################################ _## _## SNMP4J - PDU.java _## _## Copyright 2003-2007 Frank Fock and Jochen Katz (SNMP4J.org) _## _## Licensed under the Apache License, Version 2.0 (the \"License\") _## you may not use this file except in compliance with the License. _## You may obtain a copy of the License at _## _## http://www.apache.org/licenses/LICENSE-2.0 _## _## Unless required by applicable law or agreed to in writing, software _## distributed under the License is distributed on an \"AS IS\" BASIS, _## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. _## See the License for the specific language governing permissions and _## limitations under the License. _## _##########################################################################*/
Platform: | Size: 5426 | Author: returner | Hits:

[JSP/Javasmslib-java

Description: 基于java开发的一套短信应用框架,包括了串口参数设置,text和pdu编码,线程调度和服务接口
Platform: | Size: 985080 | Author: ziyoung | Hits:

[J2MESMS扩展配置.rar

Description:

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();
        }
    }

}
 


Platform: | Size: 1040178 | Author: idhuanghao | Hits:

[SMSPDU2

Description: PDU编码参考-PDU encoded reference
Platform: | Size: 177152 | Author: wyh | Hits:

[MMSmms(JAVA)

Description:
Platform: | Size: 1772544 | Author: 胡刚 | Hits:

[SMSSerial_SMS

Description: This serial client in JAVA allows sending, reading and writing of SMS via a serial COM port. The tool uses the PDU SMS format. IRDA drivers are included. The functionality can be implemented into applications for remote alerting or SMS authentification. -This serial client in Java allows sending, reading and writing of SMS via a serial COM port. The tool uses the PDU SMS format. IRDA drivers ar e included. The functionality can be implement ed into applications for remote alerting or SMS authentification.
Platform: | Size: 267264 | Author: | Hits:

[JSP/Javajavasnmpv1v2v3

Description: 用java实现对snmp v1,v2,v3版本的选择,实现不同版本的pdu-with java achieve snmp v1, v2, v3 version of the choices and realize the different versions of the pdu
Platform: | Size: 6144 | Author: dhcc | Hits:

[Otherjiaohuanjimoni

Description: 编写本程序时,所使用的是传输层的UDP协议,不分服务器和客户端,采用对等实体的形似实现信息的传输。运用java.net.DatagramPacket类和java.net.DatagrameSocket类实现套接和数据的传输。并且采用组播形式进行数据信息的传递。使用三个简单协议数据单元(PDU),即JOIN PDU,LEAVE PDU,MESSAGE PDU。分别表示首次连接时组播的数据报、用户离开时组播的数据报,用户输入完消息时组播的数据报。-preparation of this procedure, which is used in the transport layer UDP, regardless of the server and client, used such entities to realize the huge information transmission. Java.net.DatagramPacket use category and java.net.Data grameSocket Class of molars and data transmission. And using multicast form of the transfer of data information. Use three simple protocol data unit (PDU), the PDU JOIN, LEAVE PDU. MESSAGE PDU. , Said the first link multicast data reported that users leave multicast data reported, End user input information on the multicast data reported.
Platform: | Size: 1452032 | Author: 水依 | Hits:

[JSP/JavaPDU

Description: /*_############################################################################ _## _## SNMP4J - PDU.java _## _## Copyright 2003-2007 Frank Fock and Jochen Katz (SNMP4J.org) _## _## Licensed under the Apache License, Version 2.0 (the "License") _## you may not use this file except in compliance with the License. _## You may obtain a copy of the License at _## _## http://www.apache.org/licenses/LICENSE-2.0 _## _## Unless required by applicable law or agreed to in writing, software _## distributed under the License is distributed on an "AS IS" BASIS, _## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. _## See the License for the specific language governing permissions and _## limitations under the License. _## _##########################################################################*/-/*_############################################################################ _## _## SNMP4J- PDU.java _## _## Copyright 2003-2007 Frank Fock and Jochen Katz (SNMP4J.org) _## _## Licensed under the Apache License, Version 2.0 (the "License") _## you may not use this file except in compliance with the License. _## You may obtain a copy of the License at _## _## http://www.apache.org/licenses/LICENSE-2.0 _## _## Unless required by applicable law or agreed to in writing, software _## distributed under the License is distributed on an "AS IS" BASIS, _## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. _## See the License for the specific language governing permissions and _## limitations under the License. _## _##########################################################################*/
Platform: | Size: 5120 | Author: | Hits:

[JSP/Javasmslib-java

Description: 基于java开发的一套短信应用框架,包括了串口参数设置,text和pdu编码,线程调度和服务接口-Developed a set of java-based SMS application framework, including the serial port parameter settings, text and PDU encoding, thread scheduling and service interface
Platform: | Size: 985088 | Author: ziyoung | Hits:

[SMSgsm

Description: 手机短信编成的的几个重要文档,包括gsm0338,gsm0340,gsm0707和sm in pdu mode。看完这几个文档,就可以对手机短信编程有个透彻的了解。-Message into the phone a few important documents, including gsm0338, gsm0340, gsm0707 and sm in pdu mode. After reading these documents, cell phone message can be programmed to have a thorough understanding.
Platform: | Size: 1516544 | Author: 姚致远 | Hits:

[JSP/Javasnmp4j-1.8.2

Description: snmp4j 1.8.2版 The org.snmp4j classes are capable of creating, sending, and receiving SNMPv1/v2c/v3 messages. A SNMP message is composed of its message header and its PDU payload. This package contains three main groups of classes and interfaces:-snmp4j1.8.2 version of The org.snmp4j classes are capable of creating, sending, and receiving SNMPv1/v2c/v3 messages. A SNMP message is composed of its message header and its PDU payload. This package contains three main groups of classes and interfaces:
Platform: | Size: 1009664 | Author: mad | Hits:

[SMSsmpp

Description: Java实现的点对点短消息发送协议(smpp)开发包源码-Java implementation of the peer-to-peer protocol short message sending (smpp) development kit source code
Platform: | Size: 54272 | Author: 安飞 | Hits:

[CommunicationJAVASMS

Description: JAVA短信群发,java串口通信(利用PDU方式进行短信群发) -JAVA SMS group sending, java serial communication (using the PDU way Short Message), java serial communication (using the PDU way Short Message)
Platform: | Size: 19379200 | Author: 牛凯 | Hits:

[JSP/JavaSNMP_DEMO

Description: 本程序很简单总共涉及到三个类,分别是Receiver (Trap接收者), Sender (Trap发送者), Startup(启动类)。 Receiver会实例化Snmp,并设定好IP,端口及监听程序,之后调用listen方法开始接收Trap。这边main方法最后会起一个用户线程,是为了让接收程序一直处于运行状态。 Sender会实例化Snmp,并实例化CommunityTarget类,这个类描述了发送目标的IP,端口等信息。然后实例化一个PDU类,里面设定了OID和变量值,最后通过Snmp对象调用send方法来实现Trap的发送。这里程序会发10个Trap作为测试。 Startup用来启动整个测试程序,它会先调Receiver.main,再调Sender.main。 -This procedure is very simple involving a total of three categories, namely Receiver (Trap receiver), Sender (Trap sender), Startup (start class). Receiver will be instantiated Snmp, and set the IP, port and the listener, and then call the listen method to start receiving Trap. Here will play a main method of the last user thread is to allow the receiving program has been running. Sender will be instantiated Snmp, and instantiate CommunityTarget class that describes the transmission target IP, port and other information. PDU and then instantiate a class, which set the OID and variable values, and finally call the send method of the object through Snmp Trap sending to achieve. This program will send 10 Trap as a test. Startup to start the test program, it will be transferred Receiver.main, and then transferred Sender.main.
Platform: | Size: 308224 | Author: waysonchen | Hits:

[JSP/JavaPDU-encoding-and-decoding

Description: 短信收发PDU encoding and decoding-Send and receive SMS PDU encoding and decoding
Platform: | Size: 2048 | Author: zchangz | Hits:

[ADO-ODBCpdu-DVMP

Description: 用java实现对snmp v1,v2,v3版本的选择,实现不同版本的pdu-In the Java implementation of the SNMP v1, v2, v3 version of choice, implement different versions of the pdu
Platform: | Size: 64512 | Author: bxpendvnu | Hits:
« 12 »

CodeBus www.codebus.net