<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_学海无涯</title><subtitle type="text">记录我的程序人生...</subtitle><id>http://feed.cnblogs.com/blog/u/2497/rss</id><updated>2006-12-01T13:33:38Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/2497/rss"/><entry><id>http://www.cnblogs.com/josson/archive/2006/11/03/549106.html</id><title type="text">JAVA写文件到FTP的两种方法(转)</title><summary type="text">http://www.blogjava.net/JaVaa/1.使用URL：URLurl=newURL("ftp://javaa:javaa@172.168.2.222:21/test/javaa.txt");PrintWriterpw=newPrintWriter(url.openConnection().getOutputStream());pw.write("thisisatest");pw...</summary><published>2006-11-03T06:47:00Z</published><updated>2006-11-03T06:47:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/11/03/549106.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/11/03/549106.html"/><content type="text">http://www.blogjava.net/JaVaa/1.使用URL：URLurl=newURL("ftp://javaa:javaa@172.168.2.222:21/test/javaa.txt");PrintWriterpw=newPrintWriter(url.openConnection().getOutputStream());pw.write("thisisatest");pw...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/11/01/546539.html</id><title type="text">Linux的一些命令</title><summary type="text">A.修改linux系统默认的1024个文件上限。在/root/.bash_profile文件中加入：ulimit -n 4096B.察看某个进程打开的文件数：先用ps -aux找到pid,然后运行lsof -p%pid% | wc -lC.察看80端口的连接数netstat -nat|grep -i “80″|wc -l</summary><published>2006-11-01T03:29:00Z</published><updated>2006-11-01T03:29:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/11/01/546539.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/11/01/546539.html"/><content type="text">A.修改linux系统默认的1024个文件上限。在/root/.bash_profile文件中加入：ulimit -n 4096B.察看某个进程打开的文件数：先用ps -aux找到pid,然后运行lsof -p%pid% | wc -lC.察看80端口的连接数netstat -nat|grep -i “80″|wc -l</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/11/01/546434.html</id><title type="text">如何实时查看mysql当前连接数?</title><summary type="text">1、查看当前所有连接的详细资料:./mysqladmin -uadmin -p -h10.140.1.1 processlist2、只查看当前连接数(Threads就是连接数.):./mysqladmin -uadmin -p -h10.140.1.1status</summary><published>2006-11-01T02:07:00Z</published><updated>2006-11-01T02:07:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/11/01/546434.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/11/01/546434.html"/><content type="text">1、查看当前所有连接的详细资料:./mysqladmin -uadmin -p -h10.140.1.1 processlist2、只查看当前连接数(Threads就是连接数.):./mysqladmin -uadmin -p -h10.140.1.1status</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/09/08/498927.html</id><title type="text">JavaScript/Jscript核心语言对象扩充函数</title><summary type="text">一、对象函数的扩充和代码扩充函数的对象包括Array、String、Date、Number、Boolean。Array对象扩充函数 函数名 参数 说明 indexOf _value 返回数组中值等于参数_value的元素索引位置，如果没有返回-1 lastIndexOf _value 返回数组中值等于参数_value的元素反向索引位置，如果没有返回-1 contains _value 返回数组中是...</summary><published>2006-09-08T08:32:00Z</published><updated>2006-09-08T08:32:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/09/08/498927.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/09/08/498927.html"/><content type="text">一、对象函数的扩充和代码扩充函数的对象包括Array、String、Date、Number、Boolean。Array对象扩充函数 函数名 参数 说明 indexOf _value 返回数组中值等于参数_value的元素索引位置，如果没有返回-1 lastIndexOf _value 返回数组中值等于参数_value的元素反向索引位置，如果没有返回-1 contains _value 返回数组中是...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/08/03/466676.html</id><title type="text">(收藏)Turbo C 2.0、Borland C++库函数及用例</title><summary type="text">字母Ａ开头函数函数名: abort功 能: 异常终止一个进程用 法: void abort(void);程序例:#include &lt;stdio.h&gt;#include &lt;stdlib.h&gt;int main(void){printf("Calling abort()\n");abort();return 0; /* This is never reached */}函数名: a...</summary><published>2006-08-03T05:18:00Z</published><updated>2006-08-03T05:18:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/08/03/466676.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/08/03/466676.html"/><content type="text">字母Ａ开头函数函数名: abort功 能: 异常终止一个进程用 法: void abort(void);程序例:#include &lt;stdio.h&gt;#include &lt;stdlib.h&gt;int main(void){printf("Calling abort()\n");abort();return 0; /* This is never reached */}函数名: a...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/08/03/466675.html</id><title type="text">(收藏)C库函数手册</title><summary type="text">原文: http://blog.csdn.net/shaohui/archive/2004/11/05/167969.aspx分类函数,所在函数库为ctype.hint isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9') 返回非0值,否则返...</summary><published>2006-08-03T05:16:00Z</published><updated>2006-08-03T05:16:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/08/03/466675.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/08/03/466675.html"/><content type="text">原文: http://blog.csdn.net/shaohui/archive/2004/11/05/167969.aspx分类函数,所在函数库为ctype.hint isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9') 返回非0值,否则返...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/06/27/436891.html</id><title type="text">MySQL的大小写敏感设置</title><summary type="text">在 MySQL 中，数据库和表对就于那些目录下的目录和文件。因而，操作系统的敏感性决定数据库和表命名的大小写敏感。这就意味着数据库和表名在 Windows 中是大小写不敏感的，而在大多数类型的 Unix 系统中是大小写敏感的。奇怪的是列名与列的别名在所有的情况下均是忽略大小写的，而表的别名又是区分大小写的。要避免这个问题，你最好在定义数据库命名规则的时候就全部采用小写字母加下划线的组合，而不使用任...</summary><published>2006-06-27T06:06:00Z</published><updated>2006-06-27T06:06:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/06/27/436891.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/06/27/436891.html"/><content type="text">在 MySQL 中，数据库和表对就于那些目录下的目录和文件。因而，操作系统的敏感性决定数据库和表命名的大小写敏感。这就意味着数据库和表名在 Windows 中是大小写不敏感的，而在大多数类型的 Unix 系统中是大小写敏感的。奇怪的是列名与列的别名在所有的情况下均是忽略大小写的，而表的别名又是区分大小写的。要避免这个问题，你最好在定义数据库命名规则的时候就全部采用小写字母加下划线的组合，而不使用任...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/04/19/379152.html</id><title type="text">ORACLE应用经验-表空间</title><summary type="text">建立表空间CREATE TABLESPACE data01DATAFILE '/oracle/oradata/db/DATA01.dbf' SIZE 500MUNIFORM SIZE 128k; #指定区尺寸为128k,如不指定，区尺寸默认为64k删除表空间DROP TABLESPACE data01 INCLUDING CONTENTS AND DATAFILES;一、建立表空间CREATE T...</summary><published>2006-04-19T05:59:00Z</published><updated>2006-04-19T05:59:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/04/19/379152.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/04/19/379152.html"/><content type="text">建立表空间CREATE TABLESPACE data01DATAFILE '/oracle/oradata/db/DATA01.dbf' SIZE 500MUNIFORM SIZE 128k; #指定区尺寸为128k,如不指定，区尺寸默认为64k删除表空间DROP TABLESPACE data01 INCLUDING CONTENTS AND DATAFILES;一、建立表空间CREATE T...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/04/06/368483.html</id><title type="text">Linux中通过locale来设置字符集</title><summary type="text">在Linux中通过locale来设置程序运行的不同语言环境，locale由ANSI C提供支持。locale的命名规则为&lt;语言&gt;_&lt;地区&gt;.&lt;字符集编码&gt;，如zh_CN.UTF-8，zh代表中文，CN代表大陆地区，UTF-8表示字符集。在locale环境中，有一组变量，代表国际化环境中的不同设置：1. LC_COLLATE定义该环境的排序和比较规则2. LC_C...</summary><published>2006-04-06T08:36:00Z</published><updated>2006-04-06T08:36:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/04/06/368483.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/04/06/368483.html"/><content type="text">在Linux中通过locale来设置程序运行的不同语言环境，locale由ANSI C提供支持。locale的命名规则为&lt;语言&gt;_&lt;地区&gt;.&lt;字符集编码&gt;，如zh_CN.UTF-8，zh代表中文，CN代表大陆地区，UTF-8表示字符集。在locale环境中，有一组变量，代表国际化环境中的不同设置：1. LC_COLLATE定义该环境的排序和比较规则2. LC_C...</content></entry><entry><id>http://www.cnblogs.com/josson/archive/2006/04/06/368368.html</id><title type="text">Oracle字符集问题总结</title><summary type="text">经常有同事咨询oracle数据库字符集相关的问题，如在不同数据库做数据迁移、同其它系统交换数据等，常常因为字符集不同而导致迁移失败或数据库内数据变成乱码。现在我将oracle字符集相关的一些知识做个简单总结，希望对大家今后的工作有所帮助。一、什么是oracle字符集Oracle字符集是一个字节数据的解释的符号集合,有大小之分,有相互的包容关系。ORACLE 支持国家语言的体系结构允许你使用...</summary><published>2006-04-06T06:49:00Z</published><updated>2006-04-06T06:49:00Z</updated><author><name>josson</name><uri>http://www.cnblogs.com/josson/</uri></author><link rel="alternate" href="http://www.cnblogs.com/josson/archive/2006/04/06/368368.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/josson/archive/2006/04/06/368368.html"/><content type="text">经常有同事咨询oracle数据库字符集相关的问题，如在不同数据库做数据迁移、同其它系统交换数据等，常常因为字符集不同而导致迁移失败或数据库内数据变成乱码。现在我将oracle字符集相关的一些知识做个简单总结，希望对大家今后的工作有所帮助。一、什么是oracle字符集Oracle字符集是一个字节数据的解释的符号集合,有大小之分,有相互的包容关系。ORACLE 支持国家语言的体系结构允许你使用...</content></entry></feed>
