- 博客(7)
- 收藏
- 关注
原创 android AutoCompleteTextView点击显示所有
android AutoCompleteTextView点击显示所有方法:autocustomName = (MyAutoCompleteTextView) findViewById(R.id.custom_name); autocustomName.setOnFocusChangeListener(new OnFocusChangeListener() {
2016-08-04 10:22:45
1235
原创 nginx+php的坑
修改 nginx 安装目录权限setfacl -m u:nginx:rwx -R /opt/lnmp/nginxsetfacl -m d:u:nginx:rwx -R /opt/lnmp/nginx这条命令不行,要改成修改 nginx 安装目录权限setfacl -m u:nginx:rwx -R /opt/lnmp/setfacl -m d:u:nginx:rwx -R /opt/lnmp/...
2021-02-02 16:40:59
143
原创 No implementation found for int com.baidu.mapsdkplatform.comjni.tools.JNITools.initClass
打开项目突然报No implementation found for int com.baidu.mapsdkplatform.comjni.tools.JNITools.initClass解决问题:jniLibs目录下只有一个armeabi目录下有so,拷贝其他几个目录到同级目录,问题解决
2020-12-25 13:47:18
497
原创 struts+hibernate开发的坑
1. 用下面这种方法获取Product无法得到Category的信息: public List<Product> listProductByCatgoryId(int cid) { List<Product> result = new ArrayList(); SessionFactory sf = new Configuration().configure() .buildSessionFactory()...
2020-07-17 09:29:20
147
原创 idea Tomcat服务器配置的坑
按照向导一步一步配置完成,死活进不了http://localhost:8080/hello页面,原来问题出在路径上面:/表示访问路径,原来这里是什么/javaee_war_exploded,表示javaee_war_exploded才是你的根目录,你要访问servlet,必须http://localhost:8080/javaee_war_exploded/hello才行,所以要想直接ht...
2020-04-15 15:29:00
226
转载 android 调用另一个应用程序的其中一个activity
https://blog.youkuaiyun.com/chaogelilun/article/details/86503333
2019-12-14 14:10:52
223
原创 sqlite3数据库不同步的问题
sqlite3数据库更新时,如果使用的WAL模式,则主DB文件不会更新,先更新到wal shm文件中,所以如果你要把主DB文件拷走的话就没有得到更新过的内容,用下面这句:sqliteDB.disableWriteAheadLogging();解决所有问题,不使用WAL模式,则只更新主DB文件,一句话解决了困扰好几天的问题!...
2019-12-14 14:03:12
1129
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅