- 浏览: 59427 次
- 性别:
- 来自: 成都
最新评论
-
jimmycheng:
讨论个问题: 目前我碰到这样的,就是比如;TestUse ...
json转为java的vo对象
文章列表
Sometimes we need a true combobox for our projects but iPhone SDK does not have a native one (at least from what I know) and of course neither has Titanium.
So we will build one. A “true” iPhone or Ipad combobox that allows you to use the same textfield to input arbitrary text or select a value fro ...
<?php
/*
* Created on Jun 18, 2010
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
unset($onlineip);
if(getenv('HTTP_CLIENT_IP')) {
$onlineip = getenv('HTTP_CLIENT_IP');
} elseif(getenv('HTTP_X_FORWARDED_FOR')) {
...
因为公司的一些业务需求,我需要批量的将所有的xls文件转化为pdf文件,如果一个个的点击,借助于adobe,那么无疑会需要很长的时间;相信这样子的业务需要肯定有市场的,这也意味着肯定存在这样子的软件。
网上 ...
将/etc/inputrc中的set bell-style none 前的#去掉,之后重启系统即可。
解决办法1:
远程桌面连接-》选项-》高级-》去掉“主题”和“位图缓存”这两个选项,然后登陆服务器
解决办法2:
超 出最大连接数(同样可以处理远程黑屏和蓝屏问题):
在本地电脑运行命令行:
mstsc /console /v:你的服务器IP:远程端口
例如 :mstsc /console /v:73.123.215.1111:3389
1、安装Apache服务
sudo apt-get install apache2
然后按照提示即完成apahce的安装了。这里 可以打开http://127.0.0.1,即可看于是It works
首先我直接用apt-get安装了apache2,php5,pear以及mysql5, 为了方便后续的安装,还加上了make和libmysqlclient
sudo apt-get install apache2-mpm-prefork
sudo apt-get install php5 ,php-xml-parser php-fpdf php-image-graph
sudo apt-get ...
刚学Django不久,尝试把Django-cms部署到Apache下,配置文件如下
<Location "/mysite/">
setHandler python-program
PythonPath "['E:/workarea/python','E:/workarea/python/mysite'] + sys.path"
PythonHandler django.core.handlers.modpython
PythonOption django.root /mysite
PythonHandler ...
采用Ajax传递数据时,通常会将数据整理为data="var1=abc&var2=def"。而当数据中存在加号(+)或是连接符(&)时,服务器端接收数据时会有部分数据丢失现象。
分析一下Ajax传递数据的格式与Javascript的语法不难发现:
1. "+"号:JavaScript解析为字符串连接符,所以服务器端接收数据时"+"会丢失。
2. "&":JavaScript解析为变量连接符,所以服务器端接收数据时&符号以后的数据都会丢失。
encodeURI(String)
...
<?php
ob_start('ob_gzhandler');
header("Cache-Control: public");
header("Pragma: cache");
$offset = 60*60*24*60;
$ExpStr = "Expires: ".gmdate("D, d M Y H:i:s",time() + $offset)." GMT";
$LmStr = "Last-Modified: ".gm ...
DING | TRAILING] [remstr] FROM] str)
返回字符串str,其所有remstr前缀或后缀被删除了。如果没有修饰符BOTH、LEADING或TRAILING给出,BOTH被假定。如果remstr没被指定,空格被删除。
mysql> select TRIM(' bar ');
-> 'bar'
mysql> select TRIM(LEADING 'x' FROM 'xxxbarxxx');
-> 'barxxx'
mysql> select TRIM(BOTH 'x' FROM 'xxxbarxxx');
...
长度和语法分析
datalength(char_expr)
在char_expr中返回字符的长度值,忽略尾空
substring(expression,start,length)
返回部分字符串
right(char_expr,int_expr)
返回char_expr右边的int_expr字符
基本字符串运算
upper(char_expr)
把char_expr转换成大写形式
lower(char_expr)
把char_expr转换成小写形式
space(int_expr)
生成有int_expr个空格的字符串
replica ...
String str = "[{'name':'hello',age:'21'},{'name':'hello2',age:'22'},{'name':'hello3',age:'23'}]";
JSONArray jsonArray = JSONArray.fromObject(str);
List list = new ArrayList();
for ( int i = 0 ; i<jsonArray.size(); i++){
JSONObject jsonObject = jsonArray.getJSONObject(i);
...
看了网上的几个版本,感觉比较别扭,为何不直接用replaceAll呢?
public String removeSpecialSQLChars(String sql){
if(sql != null ){
sql = sql.replaceAll("\\'|\\band\\b|\\bexec\\b|\\binsert\\b|\\bselect\\b|\\bdelete\\b|\\bupdate\\b|\\bcount\\b|\\*|%|\\bchr\\b|\\bmid\\b|\\bmaster\\b|\\btruncate\\b|\\bchar\\b|\\bdeclar ...
Ant的概念
可能有些读者并不理解什么是Ant以及如何使用它,但只要使用过Linux系统的读者,应该知道make这个命令。当编译Linux内核及一些软件的源程序时,经常要用这个命令。Make命令其实就是一个项目管理工具,而Ant所实现功能与此类似。像make,gnumake和nmake这些编译工具都有一定的缺陷,但是Ant却克服了这些工具的缺陷。
最初Ant开发者在开发跨平台的应用时,同样也是基于这些缺陷对Ant做了更好的设计。
Ant 与 makefile
Makefile有一些不足之处,比如很多人都会碰到的烦人的Tab问题。最初的Ant开发者多次强调“我在Tab前面 ...
- 2009-12-01 13:42
- 浏览 1039
- 评论(0)
Last night I noticed now Zend IDE has the Data Source Explorer set up like a tree of your database and tables, columns, keys, etc.
I thought that was pretty cool, so I decided to do the same thing.
But with my buddy JSON and his right hand man PHP, we will let Flex come and play with all of us.
Th ...
- 2009-11-30 10:51
- 浏览 1774
- 评论(0)