参考如下:如果你是通过form提交的,那就不需要用这个了。但是如果是你使用url的方式例如:ajax提交到后台的,就需要对url进行encodeURI编码,否则,会导致后台出现各种乱码,不加encodeURI的话,默认浏览器编码格式提交,这样的话,浏览器不同,传到后台的值也就不同了,所以建议使用en...
分类:
其他好文 时间:
2014-08-11 20:50:22
阅读次数:
186
Linux shell 读取一行方法一通过指定IFS--Internal Field Separator,IFS默认情况下是,可以下脚本中设定IFS值DEMO 1$cat t1.txt abcfd $cat test_IFS.sh #! /bin/shIFS="c"for LINE in `ca.....
分类:
系统相关 时间:
2014-08-11 20:32:42
阅读次数:
384
#include int main(){ int n; while(scanf("%d",&n),n) { int a[101],min,k,i,t; k=0; for(i=0;i<n;i++) scanf("%d",&a[i]); min=a[0]; for(i=1;i<n;i++) if(a[i...
分类:
其他好文 时间:
2014-08-11 20:30:12
阅读次数:
189
[root@test]# /usr/local/mysql/bin/mysql -urootERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)[root@test]#...
分类:
数据库 时间:
2014-08-11 20:29:02
阅读次数:
248
Can't locate Time/HiRes.pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl...
分类:
其他好文 时间:
2014-08-11 17:19:42
阅读次数:
169
1 import java.sql.*; 2 3 public class ConnectAccess { 4 5 6 public static void main(String args[]){ 7 ConnectAccess ca = new Conne...
分类:
数据库 时间:
2014-08-11 14:44:52
阅读次数:
185
#include //#include int main(){ int N; scanf("%d",&N); int i,num,a[1005]={0}; num=0; while(N--) { scanf("%d",&i); if(a[i]==0) { a[i]=1; num++; } } pri...
分类:
其他好文 时间:
2014-08-11 14:25:32
阅读次数:
185
How to choose q() to sample theta? Usally gausian, for the parameter u and sigma, we can get from cross validation.Importance sampling can only work o...
分类:
其他好文 时间:
2014-08-11 11:47:22
阅读次数:
171
在进行数据库操作时,如还原数据库,有时候显示如下错误Exclusive access could not be obtained because the database is in use 可以使用下面语句,关闭当前链接以便继续操作。 use Master ALTER DATABASE yourd...
分类:
数据库 时间:
2014-08-11 11:33:22
阅读次数:
241
配置httpd工作于https模型下具实现步骤:使用的httpd服务器IP为192.168.1.132。(1)安装mod_ssl模块#yuminstall-ymod_ssl安装该模块后生成的主要文件有:#rpm-qlmod_ssl其中/etc/httpd/conf.d/ssl.conf为配置文件。(2)为服务端生成私钥,并为其提供证书;因为是模拟测试使用http..
分类:
其他好文 时间:
2014-08-11 10:21:32
阅读次数:
655