- 浏览: 17974 次
- 性别:
- 来自: 福州
最新评论
文章列表
Fragment是由FragmentManager管理的,而FragmentManager在处理onContextItemSelected时不区分哪个fragment传进来的
解决方法大概有2个:
1. 对menu进行分组,并在onContextItemSelected最后返回false,让下一个接收者能收到该menu处理
2. 在onContextItemSelected方法开头用getUserVisibleHint 方法来判断改fragment是否当前可见,对于不是当前可见的fragment放过
- 2014-08-11 21:31
- 浏览 1397
- 评论(0)
使用JdbcTemplate插入大文本的CLOB字段时,可以用如下方法进行:
final LobHandler lobHandler = new DefaultLobHandler (); //定义一个lob的操作类
Object update_result = jdbc.execute(sql, new AbstractLobCreatingPreparedStatementCallback(lobHandler) {
@Override
protected void setValues(PreparedStatement pstmt, LobCreator lo ...
- 2014-05-13 22:36
- 浏览 1601
- 评论(0)
1.install sql developer
rpm -ivh sqldeveloper-3.2.20.09.87-1.noarch.rpm
2.open conf file, then set jdk path
vi /opt/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf
add full jdk path to "SetJavaHome" properties.then add "SetSkipJ2SDKCheck true" to skip the jdk check.
IncludeC ...
1.ls -al
check the file have "x" permisson.
2.if not!
chmod +x filename.bin
3.execute
./filename.bin
How to change default MAC address
1. ifconfig
find the network car name,e.g. eth0,eth1,em1
2.
ifconfig eth0 down
ifconfig eth0 hw ether xx:xx:xx:xx
ifconfig eth0 up
3.done!
How to change the defult login mode.
open inittab file
1.vi /etc/inittab
2.modify runlevel.
3. reboot.
1. Add file on directory /etc/yum.repo.d/google-chrome.repo
2. add content:
[google-chrome]
name=google-chrome - 64-bit
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
yum install google-chrome-st ...
state的定义: 使用state操作符来声明变量,可以在子程序的多次调用期间保留变量之前的值,并将变量的作用域局限于子程序内部。
注意:使用state操作符时,一定要加上版本限制use 5.010,否则会失效.
转自:http://blog.csdn.net/Nonetracer/article/details/5718796
俗话说,祸不单行。刚刚解决数据库连接慢的问题又遇到了时间不对的问题。用户的测试机安装的win7,测试时发现时间总是差8个小时。立马想到时区不对,查看控制面板里时区设 ...
获取System的属性值,代码如下:
Properties p = System.getProperties();
Enumeration e = p.keys();
while (e.hasMoreElements()) {
String key = (String) e.nextElement();
String value = System.getProperty(key);
System.out.println(key + "=" + value);
}
public class Test{
public static void main (String args []){
java.util.Date a = new java.util.Date();
System.out.println(a);
java.sql.Date b = new java.sql.Date(a.getTime());
System.out.println(b);
java.sql.Time c = new java.sql.Time(a.getTime());
System.out.println(c);
java.sql.Tim ...
public boolean contains(String str, String sub){
if(str.indexOf(sub) == -1){
return false;
}else {
return true;
}
}
final TimeZone zone = TimeZone.getTimeZone("GMT+8"); //获取中国时区
TimeZone.setDefault(zone); //设置时区
#user nobody;
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;
events {
worker_connections 64;
}
http {
include mime.types;
default_type application/octet-stream;
log_format m ...
C3P0是一个开放源代码的JDBC连接池,它在lib目录中与Hibernate一起发布,包括了实现jdbc3和jdbc2扩展规范说明的Connection 和Statement 池的DataSources 对象。
c3p0-config>
<default-config>
<!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
<property name="acquireIncrement">3</property>
<!--定义在从数据库获取新连接失败后重 ...