public int getResource(String imageName){ Context ctx=getBaseContext(); int resId = getResources().getIdentifier(imageName, "drawable" ...
分类:
移动开发 时间:
2014-12-22 19:33:06
阅读次数:
237
jedis池的配置,maxActive :控制一个pool可分配多少个jedis实例,通过pool.getResource()来获取;如果赋值为-1,则表示不限制;如果pool已经分配了maxActive个jedis实例,则此时pool的状态就成exhausted了;maxIdle:控制一个pool...
分类:
其他好文 时间:
2014-12-01 15:45:09
阅读次数:
730
Configuration类 用于获取手机上的设备的配置信息,包括用户配置项和系统的动态设置项 可通过Activity的如下方法获得: Configuration cfg = getResource().getConfiguration(); 属性 public float fontScale; 获...
分类:
移动开发 时间:
2014-11-29 19:04:34
阅读次数:
249
java程序读取资源文件时路径指定方式有两种,一是读取文件,二是通过getResource()这类系统API...
分类:
编程语言 时间:
2014-11-24 10:14:12
阅读次数:
186
Demo 1 //声明资源器类 2 Properties pro=new Properties(); 3 //获取路径 4 URL url= PropertiesTest.class.getClassLoader().getResource("driv...
分类:
其他好文 时间:
2014-11-16 14:41:22
阅读次数:
142
java中,定位class的方式,总共有以下几种XXX.class.getResource(String resourceName)XXX.class.getClassLoader().getResource(String resourceName)Thread.currentThread().ge...
分类:
编程语言 时间:
2014-11-13 10:36:52
阅读次数:
134
1、关于Fragment(XXFragment) not attached to Activity 异常。出现该异常,是因为Fragment的还没有Attach到Activity时,调用了如getResource()等,需要上下文Content的函数。解决方法,就是等将调用的代码写在...
分类:
其他好文 时间:
2014-11-07 21:01:13
阅读次数:
192
如果想根据给定的文件名称创建一个File实例,你可能会这么写:
File file = new File(当前类.class.getResource("config").toURI());
但是在osgi项目中,这种写法会报异常,异常信息是URI scheme is not "file",原因是osgi中采用的是bundleresources协议的URL,得到的URI中包含了”bundlere...
分类:
其他好文 时间:
2014-10-29 10:57:03
阅读次数:
152
1.首先需要在后台设置一个date属性的产品属性 为预售的日期2.然后 是取出这个属性值$_product->getResource()->getAttribute('code')->getFrontend()->getValue($_product);取出的是一个string类型的时间数据,要使用...
分类:
其他好文 时间:
2014-10-22 17:30:46
阅读次数:
260
项目打jar包后无法获取配置文件的路径问题今天在开发中做一个java项目,要求读取配置文件中的信息,当项目打jar包以后就找不到配置文件了,问题最后解决了,拿出来跟大家分享一下。方式一:getResource(这种方式在war包好用,在jar包不好用):public static void main...
分类:
其他好文 时间:
2014-10-02 20:07:03
阅读次数:
143