• 大小: 4.58MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-16
  • 语言: Java
  • 标签: JPush  java  Android  

资源简介

Android中实现对JPush信息的处理,后台服务器采用java开发。可以自定义要推送的信息和模式

资源截图

代码片段和文件信息

package cn.jpush.api;

import java.util.HashSet;
import java.util.Set;

public class baseClient {
protected String masterSecret = ““;
protected String appKey = ““;
protected String sendDescription = ““;                              //发送的描述
protected long timeToLive = -1;                                      //保存离线的时长。秒为单位。默认为保存1天的离线消息
protected boolean enableSSL = false;
protected Set devices = new HashSet();      //默认发送android和ios

public String getMasterSecret() {
return masterSecret;
}

public long getTimeToLive() {
return timeToLive;
}

protected String getAppKey() {
return this.appKey;
}

public void setSendDescription(String description) {
this.sendDescription = description;
}

protected String getSendDescription() {
return this.sendDescription;
}

protected Set getDevices() {
if (null == this.devices) {
this.devices = new HashSet();
}
if (this.devices.size() == 0) {
this.devices.add(DeviceEnum.Android);
this.devices.add(DeviceEnum.IOS);
}
return this.devices;
}

/*
 * @description 是否使用ssl安全连接
 */
public void setEnableSSL(boolean enableSSL) {
this.enableSSL = enableSSL;
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-03-29 21:44  JPushExample(431299)\
     文件         482  2016-03-29 21:44  JPushExample(431299)\.classpath
     目录           0  2016-03-29 21:44  JPushExample(431299)\.idea\
     文件          20  2016-03-29 21:44  JPushExample(431299)\.idea\.name
     文件         686  2016-03-29 21:44  JPushExample(431299)\.idea\compiler.xml
     目录           0  2016-03-29 21:44  JPushExample(431299)\.idea\copyright\
     文件          76  2016-03-29 21:44  JPushExample(431299)\.idea\copyright\profiles_settings.xml
     文件         159  2016-03-29 21:44  JPushExample(431299)\.idea\encodings.xml
     文件         316  2016-03-29 21:44  JPushExample(431299)\.idea\gradle.xml
     文件         832  2016-03-29 21:44  JPushExample(431299)\.idea\misc.xml
     文件        5768  2016-03-29 21:44  JPushExample(431299)\.idea\workspace.xml
     文件         810  2016-03-29 21:44  JPushExample(431299)\.project
     目录           0  2016-03-29 21:44  JPushExample(431299)\.settings\
     文件          85  2016-03-29 21:44  JPushExample(431299)\.settings\org.eclipse.core.resources.prefs
     文件         177  2016-03-29 21:44  JPushExample(431299)\.settings\org.eclipse.jdt.core.prefs
     文件        8397  2016-03-29 21:44  JPushExample(431299)\AndroidManifest.xml
     目录           0  2016-03-29 21:47  JPushExample(431299)\assets\
     目录           0  2016-03-29 21:44  JPushExample(431299)\bin\
     文件        8397  2016-03-29 21:44  JPushExample(431299)\bin\AndroidManifest.xml
     目录           0  2016-03-29 21:44  JPushExample(431299)\bin\classes\
     目录           0  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\
     目录           0  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\
     目录           0  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\
     文件         351  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\BuildConfig.class
     文件         748  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\ExampleApplication.class
     文件         967  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\ExampleUtil$1.class
     文件        4161  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\ExampleUtil.class
     文件        1694  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\MainActivity$MessageReceiver.class
     文件        4953  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\MainActivity.class
     文件         516  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\Manifest$permission.class
     文件         384  2016-03-29 21:44  JPushExample(431299)\bin\classes\com\example\jpushdemo\Manifest.class
............此处省略187个文件信息

评论

共有 条评论