码迷,mamicode.com
首页 >  
搜索关键字:thinkphp源码学习 data_to_xml函数 xml array    ( 86126个结果
felayman---ajax对象的兼容写法
function FactoryXMLHttpRequest() { if(window.XMLHttpRequest) { return new XMLHttpRequest(); }else if(window.ActiveXObject) { var msxmls = new Array( 'Msxml2.XM...
分类:其他好文   时间:2014-05-07 07:00:03    阅读次数:382
Dom4j读写文件时的编码问题
Dom4j读写文件时的编码问题...
分类:其他好文   时间:2014-05-07 05:24:24    阅读次数:249
电商论道---(4)schema.xml配置详解
这一节我们看下schema.xml文件中各个节点的配置极其作用。...
分类:其他好文   时间:2014-05-07 04:42:08    阅读次数:167
LeetCode合集
一 线性表 1.1  数组 1.1.1 Remove Duplicates from Sorted Array 1.1.2 Remove Duplicates from Sorted Array II 1.1.3 Search in Rotated Sorted Array 1.1.4 Search in Rotated Sorted Array II 1.1.5 Median of...
分类:其他好文   时间:2014-05-07 04:24:26    阅读次数:363
三层架构——配置文件
1、配置文件是什么 配置文件是随安装程序一起被安装到计算机上的文件,里面存放着安装好的应用程序运行时所需要的参数。 应用程序配置文件是标准的XML文件,XML标记和属性是区分大小写的。它可以按需要更改,开发人员可使用配置文件来更改设置,而不必重新编译应用程序。配置文件的根节点是 configuration。我们经常用的是appSettings,它是由.NET预定义配置节点。...
分类:其他好文   时间:2014-05-07 04:03:47    阅读次数:260
用Java求字符串数组的的交集和并集
package com.array; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import...
分类:编程语言   时间:2014-05-07 03:45:11    阅读次数:365
java.lang.IllegalArgumentException: Can't convert argument: null
从SVN下载项目后,我把项目名称改了一下然后启动tomcat后就一直报java.lang.IllegalArgumentException: Can't convert argument: null这个错。 解决办法是:第一步、将web.xml文件的头文件以javaee:开始的命名空间删除。如图: 第二步:将web.xml文件中所有javaee:替换成空白。如图: 重启tomcat,...
分类:编程语言   时间:2014-05-07 03:42:31    阅读次数:421
xml 杂记
1.将字符串转换为xml文件 String str = "113052217251212120211XX030028李双胜,陈洋,晏永超123-1232132112,123-1231231231,123-1232132132HZ9XBP"; StringReader sr = new StringReader(str); InputSource is = new InputSo...
分类:其他好文   时间:2014-05-07 03:08:06    阅读次数:308
手动搭建struct2中碰到的一点问题
手动搭建struct2的时候,总是会碰到找不到Filter的问题,到底是怎么回事呢? 其实,关键就在于导入的五个jar包,我们最好是将它放在web-inf目录下,然后再组织导入,这样web.xml才能顺利找到。 至于struct.xml,目前放在src目录下就好。 自己的技术水平一向让自己无语,碰到这样个问题都得搞半天……...
分类:其他好文   时间:2014-05-06 15:31:26    阅读次数:225
【Leetcode】3Sum
【Question】 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in ...
分类:其他好文   时间:2014-05-06 14:57:29    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!