本文整理汇总了Java中com.jfinal.weixin.sdk.msg.in.event.InLocationEvent类的典型用法代码示例。如果您正苦于以下问题:Java InLocationEvent类的具体用法?Java InLocationEvent怎么用?Java InLocationEvent使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
InLocationEvent类属于com.jfinal.weixin.sdk.msg.in.event包,在下文中一共展示了InLocationEvent类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: index
import com.jfinal.weixin.sdk.msg.in.event.InLocationEvent; //导入依赖的package包/类
/**
* weixin 公众号服务器调用唯一入口,即在开发者中心输入的 URL 必须要指向此 action
*/
@Before(MsgInterceptor.class)
public void index() {
// 开发模式输出微信服务发送过来的 xml 消息
if (ApiConfigKit.isDevMode()) {
System.out.println("接收消息:");
System.out.println(getInMsgXml());
}
// 解析消息并根据消息类型分发到相应的处理方法
InMsg msg = getInMsg();
if (msg instanceof InTextMsg)
processInTextMsg((InTextMsg)msg);
else if (msg instanceof InImageMsg)
processInImageMsg((InImageMsg)msg);
else if (msg instanceof InVoiceMsg)
processInVoiceMsg((InVoiceMsg)msg);
else if (msg instanceof InVideoMsg)
processInVideoMsg((InVideoMsg)msg);
else if (msg instanceof InLocationMsg)
processInLocationMsg((InLocationMsg)msg);
else if (msg instanceof InLinkMsg)
processInLinkMsg((InLinkMsg)msg);
else if (msg instanceof InFollowEvent)
processInFollowEvent((InFollowEvent)msg);
else if (msg instanceof InQrCodeEvent)
processInQrCodeEvent((InQrCodeEvent)msg);
else if (msg instanceof InLocationEvent)
processInLocationEvent((InLocationEvent)msg);
else if (msg instanceof InMenuEvent)
processInMenuEvent((InMenuEvent)msg);
else if (msg instanceof InSpeechRecognitionResults)
processInSpeechRecognitionResults((InSpeechRecognitionResults)msg);
else if (msg instanceof InTemplateMsgEvent)
processInTemplateMsgEvent((InTemplateMsgEvent)msg);
else
log.error("未能识别的消息类型。 消息 xml 内容为:\n" + getInMsgXml());
}
示例2: processInLocationEvent
import com.jfinal.weixin.sdk.msg.in.event.InLocationEvent; //导入依赖的package包/类
/**
* 实现父类抽方法,处理上报地理位置事件
*/
protected void processInLocationEvent(InLocationEvent inLocationEvent) {
OutTextMsg outMsg = new OutTextMsg(inLocationEvent);
outMsg.setContent("processInLocationEvent() 方法测试成功");
render(outMsg);
}
示例3: processInLocationEvent
import com.jfinal.weixin.sdk.msg.in.event.InLocationEvent; //导入依赖的package包/类
protected void processInLocationEvent(InLocationEvent inLocationEvent) {
}
示例4: processInLocationEvent
import com.jfinal.weixin.sdk.msg.in.event.InLocationEvent; //导入依赖的package包/类
protected abstract void processInLocationEvent(InLocationEvent inLocationEvent);