应用中经常使用到分享组件,当然,很多第三方都提供了社交分享,像ShareSDK、友盟都有很好的集成。
今天记录一下集成的细节:
①无论分享到哪个平台,都需要到这个平台注册相应的应用。
②以分享到微信、朋友圈、微博为例:
/**
*
*/
public class Constant {
// 微信
public static final String AppID = "wx911...
分类:
其他好文 时间:
2015-05-13 06:28:49
阅读次数:
150
There's a factory for cakes. Every day, the cost of producing a cake is different. The factory could produce as more as cakes in one day and the producing cost for cakes in the same day is the same. T...
分类:
其他好文 时间:
2015-05-12 21:10:42
阅读次数:
128
所需jar:jedis-2.1.0.jar和commons-pool-1.5.4.jar Jedis操作步骤如下: 1->获取Jedis实例需要从JedisPool中获取; 2->用完Jedis实例需要返还给JedisPool; 3->如果Jedis在使用过程中出错,则也需要还给JedisPo...
分类:
其他好文 时间:
2015-05-12 19:22:37
阅读次数:
115
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
? push(x) – Push element x onto stack.
? pop() – Removes the element on top of the stack.
? top()...
分类:
其他好文 时间:
2015-05-12 00:07:56
阅读次数:
132
建议看这个链接的内容:http://cpp.winxgui.com/cn:mempool-example-boost-pool Pool分配是一种分配内存方法,用于快速分配同样大小的内存块, 尤其是反复分配/释放同样大小的内存块的情况。1. pool 快速分配小块内存,如果pool无法提供小块内存给...
分类:
其他好文 时间:
2015-05-11 12:42:55
阅读次数:
123
上面一堆tomcat启动的提示信息省略掉,下面是报错的具体信息:org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 15 at org.apache.tomcat...
分类:
其他好文 时间:
2015-05-11 01:14:07
阅读次数:
152
1、String的本质线程安全 打开String的源码,类注释中有这么一段话“Strings are constant; their values cannot be changed after theyare created. String buffers support mutable s...
分类:
编程语言 时间:
2015-05-10 22:17:36
阅读次数:
153
1.配置dbcp数据源需要两个jar包,commons-dbcp-x.x.x.jar和commons-pool.x.x.x.jar,版本的差别不是很大,当然也需要数据库驱动
2.可以使用配置文件,也可以手动直接在程序中直接配置,(建议使用配置文件比较方便些)
在程序中直接手动配置:
package com.silence.database;
import java.sql.Connec...
分类:
数据库 时间:
2015-05-09 14:59:39
阅读次数:
223
安装:apt-get install php5-fpm php5-mysql配置:vi /etc/php5/fpm/php.inicgi.fix_pathinfo=0vi /etc/php5/fpm/pool.d/www.conflisten = /var/run/php5-fpm.socklist...
分类:
Web程序 时间:
2015-05-09 10:00:32
阅读次数:
144
1.为什么要使用连接池 数据库连接的建立及关闭资源消耗巨大 传统数据库访问方式:一次数据库访问对应一个物理连接,每次操作数据库都要打开、关闭物理连接,系统性能严重受损 解决方案:数据库连接池(Connection Pool) 系统初始运行时,主动建立足够的连接,组成一个池。每次应用程序请求数据库连....
分类:
数据库 时间:
2015-05-08 23:30:16
阅读次数:
204