- 博客(13)
- 资源 (3)
- 收藏
- 关注
原创 字符串格式的xml转json格式
一、使用org.json中的 XML.toJSONObject(String xml)可实现需求在转成json格式的字符串之后,可通过阿里的fastjson进行取值,如下:gradle依赖 :compile group: 'org.json', name: 'json', version: '20170516' compile group:
2017-08-22 15:16:47 9211
转载 centos7安装docker
rpm -Uvh http://dl.Fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmyum -y install docker-io # 仅此一条命令就可以搞定;service docker start # 启动
2017-07-14 15:51:12 410
原创 jQuery设置Radio被选中
type="radio" name="drawStatus" value="0" />能 type="radio" name="drawStatus" value="1" />否 $(":radio[name='drawStatus'][value='" + val + "']").prop("checked", "checked");
2017-05-23 13:42:03 18827
转载 Mac出现Operation not permitted
Mac使用sudo或切换成root权限,还是出现Operation not permitted这是由于Mac的rootless机制,可以进入恢复模式关闭rootless机制:1、重启mac,按command+R(windows键盘:win+R)进入恢复模式2、选择终端,在左上角,输入指令:csrutil disable3、重启后让机器正常启动,可以在终端查看
2017-05-11 10:22:37 17705
转载 PL/SQL脚本
declare -- Local variables here count integer;begin -- Test statements here dbms_output.put_line('start:'||sysdate); for count in 1..1000000 loop insert into test(id) values (1);
2017-02-22 15:38:58 396
转载 ubuntu出现/sbin/insserv: No such file or directory
在ubuntu把redis做成服务的时候,chkconfig --add redis出现/sbin/insserv: No such file or directory出现这个问题的原因是:ubuntu版本的linux系统的/sbin下没有insserv这个文件,该文件的实际路径为/usr/lib/insserv/insser,可以建个链接:sudo ln -s /usr/lib/in
2017-01-04 18:20:44 1862
转载 ubuntu无法使用chkconfig命令
下载chkconfig.deb,上传至服务器中,并在存放目录执行:dpkg -i chkconfig.debchkconfig.deb
2017-01-04 17:58:33 8325
原创 try{}里面有return,finally{}是在return之前执行还是之后
面试题:try {}里有一个return语句,那么紧跟在这个try后的finally {}里的code会不会被执行,什么时候被执行,在return前还是后? ---看看测试代码:public class TestReturn { public static void main(String[] args) { System.out.println(test());
2016-12-14 16:13:37 6413
转载 eclipse创建maven项目,DynamicWebModule默认为2.3修改不了
如下图:步骤:1、修改项目的web.xml文件修改前:<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > Archetype Created Web Applicati
2016-11-30 19:51:47 1275
转载 maven项目update project 后项目jdk变成1.5
在pom文件中添加如下: org.apache.maven.plugins maven-compiler-plugin 2.3.2 1.7 1.7 UTF-8
2016-11-30 15:43:55 377
转载 eclipse项目update project时会修改项目的编码为gbk编码,导致中文乱码问题
在pom.xml文件中指定编码方式: UTF-8 UTF-8 UTF-8
2016-11-30 15:37:40 1218
转载 eclipse默认指向 WebContent 目录 修改为 webRoot
修改.settings目录下的org.eclipse.wst.common.component文件
2016-11-28 10:44:15 1561
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人