1.Error:The project is using an unsupported version of the Android Gradle plug-in (0.12.2). The recommended version is 1.2.3. 2.Unable to load class 'org.codehaus.groovy.runtime.typehandling.ShortTypeHandlin...
分类:
移动开发 时间:
2015-05-18 16:40:19
阅读次数:
292
*.o *.lo .la ## .*.rej .rej .~ ~ .# .DS_Store thumbs.db Thumbs.db *.bak *.class *.exe *.dll *.mine *.obj *.ncb *.lib *.log *.idb *.pdb *.ilk .msi .res...
分类:
其他好文 时间:
2015-05-18 16:33:23
阅读次数:
211
public class Bean {public static final String dbtype=new String();}public static void changFinalProperty(Class clazz ,Object newvalue){try {Object o =...
分类:
编程语言 时间:
2015-05-18 16:29:13
阅读次数:
268
public class GsonTools { public GsonTools(){} public static T getPerson(String jsonString,Class cls){ T t = null; try { ...
分类:
其他好文 时间:
2015-05-18 16:28:49
阅读次数:
127
1.值类型2.引用类型3.Class访问修饰符public:访问不受限制。protected:访问仅限于包含类或从包含类派生的类型。Internal:访问仅限于当前程序集。protected internal:访问限制到当前程序集或从包含派生的类型的类别。private:访问仅限于包含类型。4.In...
微信开发-微信一般帮助类public class CommonUtil { #region 微信相关帮助 /// /// 生成指定长度的签名的随机串 /// /// /// public ...
分类:
微信 时间:
2015-05-18 16:20:01
阅读次数:
234
public class Solution { public String convertToTitle(int n) { if(n == 0) { return ""; } return convertToTitle((n - ...
分类:
其他好文 时间:
2015-05-18 16:17:07
阅读次数:
100
public class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { int i = m - 1; int j = n - 1; int k = m + ...
分类:
其他好文 时间:
2015-05-18 16:14:56
阅读次数:
100
题目描述用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。class Solution
{
public:
void push(int node) {
stack1.push(node);
} int pop() {
if(stack2.empty()) {//第二个栈为空时
while(!stack1.empty()) {...
分类:
其他好文 时间:
2015-05-18 14:51:02
阅读次数:
102
一般发生在长期使用hbase,后面再安装之后直接使用hbase shell 想要进入hbase界面,却没有启动start-hbase.sh而导致的。
[root@master local]# hbase shell
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:fi...
分类:
Web程序 时间:
2015-05-18 14:46:32
阅读次数:
138