﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-java技术-随笔分类-开发工具</title><link>http://www.blogjava.net/spark/category/35439.html</link><description>智慧是第一生产力</description><language>zh-cn</language><lastBuildDate>Thu, 10 Dec 2009 01:04:04 GMT</lastBuildDate><pubDate>Thu, 10 Dec 2009 01:04:04 GMT</pubDate><ttl>60</ttl><item><title>mysql命令（转）</title><link>http://www.blogjava.net/spark/archive/2009/12/04/304782.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Fri, 04 Dec 2009 07:38:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2009/12/04/304782.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/304782.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2009/12/04/304782.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/304782.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/304782.html</trackback:ping><description><![CDATA[<p>测试环境：mysql 5.0.45<br />
【注：可以在mysql中通过mysql&gt; SELECT VERSION();来查看数据库版本】<br />
整理：leo<br />
一、连接MYSQL。<br />
格式： mysql -h主机地址 -u用户名 －p用户密码<br />
1、连接到本机上的MYSQL。<br />
首先打开DOS窗口，然后进入目录mysql\bin，再键入命令mysql -u root -p，回车后提示你输密码.注意用户名前可以有空格也可以没有空格，但是密码前必须没有空格，否则让你重新输入密码.<br />
如果刚安装好MYSQL，超级用户root是没有密码的，故直接回车即可进入到MYSQL中了，MYSQL的提示符是： mysql&gt;<br />
2、连接到远程主机上的MYSQL。假设远程主机的IP为：110.110.110.110，用户名为root,密码为abcd123。则键入以下命令：<br />
mysql -h110.110.110.110 -u root -p 123;（注:u与root之间可以不用加空格，其它也一样）<br />
3、退出MYSQL命令： exit （回车）<br />
二、修改密码。<br />
格式：mysqladmin -u用户名 -p旧密码 password 新密码<br />
1、给root加个密码ab12。首先在DOS下进入目录mysql\bin，然后键入以下命令<br />
mysqladmin -u root -password ab12<br />
注：因为开始时root没有密码，所以-p旧密码一项就可以省略了。<br />
2、再将root的密码改为djg345。<br />
mysqladmin -u root -p ab12 password djg345<br />
三、增加新用户。<br />
（注意：和上面不同，下面的因为是MYSQL环境中的命令，所以后面都带一个分号作为命令结束符）<br />
格式：grant select on 数据库.* to 用户名@登录主机 identified by &#8220;密码&#8221;<br />
1、增加一个用户test1密码为abc，让他可以在任何主机上登录，并对所有数据库有查询、插入、修改、删除的权限。首先用root用户连入MYSQL，然后键入以下命令：<br />
grant select,insert,update,delete on *.* to [email=test1@&#8221;%]test1@&#8221;%[/email]&#8221; Identified by &#8220;abc&#8221;;<br />
但增加的用户是十分危险的，你想如某个人知道test1的密码，那么他就可以在internet上的任何一台电脑上登录你的mysql数据库并对你的数据可以为所欲为了，解决办法见2。<br />
2、增加一个用户test2密码为abc,让他只可以在localhost上登录，并可以对数据库mydb进行查询、插入、修改、删除的操作（localhost指本地主机，即MYSQL数据库所在的那台主机），<br />
这样用户即使用知道test2的密码，他也无法从internet上直接访问数据库，只能通过MYSQL主机上的web页来访问了。<br />
grant select,insert,update,delete on mydb.* to [email=test2@localhost]test2@localhost[/email] identified by &#8220;abc&#8221;;<br />
如果你不想test2有密码，可以再打一个命令将密码消掉。<br />
grant select,insert,update,delete on mydb.* to [email=test2@localhost]test2@localhost[/email] identified by &#8220;&#8221;;<br />
下篇我是MYSQL中有关数据库方面的操作。注意：你必须首先登录到MYSQL中，以下操作都是在MYSQL的提示符下进行的，而且每个命令以分号结束。<br />
一、操作技巧<br />
1、如果你打命令时，回车后发现忘记加分号，你无须重打一遍命令，只要打个分号回车就可以了。<br />
也就是说你可以把一个完整的命令分成几行来打，完后用分号作结束标志就OK。<br />
2、你可以使用光标上下键调出以前的命令。<br />
二、显示命令<br />
1、显示当前数据库服务器中的数据库列表：<br />
mysql&gt; SHOW DATABASES;<br />
注意：mysql库里面有MYSQL的系统信息，我们改密码和新增用户，实际上就是用这个库进行操作。<br />
2、显示数据库中的数据表：<br />
mysql&gt; USE 库名；<br />
mysql&gt; SHOW TABLES;<br />
3、显示数据表的结构：<br />
mysql&gt; DESCRIBE 表名;<br />
4、建立数据库：<br />
mysql&gt; CREATE DATABASE 库名;<br />
5、建立数据表：<br />
mysql&gt; USE 库名;<br />
mysql&gt; CREATE TABLE 表名 (字段名 VARCHAR(20), 字段名 CHAR(1));<br />
6、删除数据库：<br />
mysql&gt; DROP DATABASE 库名;<br />
7、删除数据表：<br />
mysql&gt; DROP TABLE 表名；<br />
8、将表中记录清空：<br />
mysql&gt; DELETE FROM 表名;<br />
9、显示表中的记录：<br />
mysql&gt; SELECT * FROM 表名;<br />
10、往表中插入记录：<br />
mysql&gt; INSERT INTO 表名 VALUES (&#8221;hyq&#8221;,&#8221;M&#8221;);<br />
11、更新表中数据：<br />
mysql-&gt; UPDATE 表名 SET 字段名1=&#8217;a',字段名2=&#8217;b&#8217; WHERE 字段名3=&#8217;c';<br />
12、用文本方式将数据装入数据表中：<br />
mysql&gt; LOAD DATA LOCAL INFILE &#8220;D:/mysql.txt&#8221; INTO TABLE 表名;<br />
13、导入.sql文件命令：<br />
mysql&gt; USE 数据库名;<br />
mysql&gt; SOURCE d:/mysql.sql;<br />
14、命令行修改root密码：<br />
mysql&gt; UPDATE mysql.user SET password=PASSWORD(&#8217;新密码&#8217;) WHERE User=&#8217;root&#8217;;<br />
mysql&gt; FLUSH PRIVILEGES;<br />
15、显示use的数据库名：<br />
mysql&gt; SELECT DATABASE();<br />
16、显示当前的user：<br />
mysql&gt; SELECT USER();<br />
三、一个建库和建表以及插入数据的实例<br />
drop database if exists school; //如果存在SCHOOL则删除<br />
create database school; //建立库SCHOOL<br />
use school; //打开库SCHOOL<br />
create table teacher //建立表TEACHER<br />
(<br />
id int(3) auto_increment not null primary key,<br />
name char(10) not null,<br />
address varchar(50) default &#8216;深圳&#8217;,<br />
year date<br />
); //建表结束<br />
//以下为插入字段<br />
insert into teacher values(&#8221;,&#8217;allen&#8217;,'大连一中&#8217;,'1976-10-10&#8242;);<br />
insert into teacher values(&#8221;,&#8217;jack&#8217;,'大连二中&#8217;,'1975-12-23&#8242;);<br />
如果你在mysql提示符键入上面的命令也可以，但不方便调试。<br />
（1）你可以将以上命令原样写入一个文本文件中，假设为school.sql，然后复制到c:\\下，并在DOS状态进入目录[url=file://\\mysql\\bin]\\mysql\\bin[/url]，然后键入以下命令：<br />
mysql -uroot -p密码 &lt; c:\\school.sql<br />
如果成功，空出一行无任何显示；如有错误，会有提示。（以上命令已经调试，你只要将//的注释去掉即可使用）。<br />
（2）或者进入命令行后使用 mysql&gt; source c:\\school.sql; 也可以将school.sql文件导入数据库中。<br />
四、将文本数据转到数据库中<br />
1、文本数据应符合的格式：字段数据之间用tab键隔开，null值用[url=file://\\n]\\n[/url]来代替.例：<br />
3 rose 大连二中 1976-10-10<br />
4 mike 大连一中 1975-12-23<br />
假设你把这两组数据存为school.txt文件，放在c盘根目录下。<br />
2、数据传入命令 load data local infile &#8220;c:\\school.txt&#8221; into table 表名;<br />
注意：你最好将文件复制到[url=file://\\mysql\\bin]\\mysql\\bin[/url]目录下，并且要先用use命令打表所在的库。<br />
五、备份数据库：（命令在DOS的[url=file://\\mysql\\bin]\\mysql\\bin[/url]目录下执行）<br />
1.导出整个数据库<br />
导出文件默认是存在mysql\bin目录下<br />
mysqldump -u 用户名 -p 数据库名 &gt; 导出的文件名<br />
mysqldump -u user_name -p123456 database_name &gt; outfile_name.sql<br />
2.导出一个表<br />
mysqldump -u 用户名 -p 数据库名 表名&gt; 导出的文件名<br />
mysqldump -u user_name -p database_name table_name &gt; outfile_name.sql<br />
3.导出一个数据库结构<br />
mysqldump -u user_name -p -d &#8211;add-drop-table database_name &gt; outfile_name.sql<br />
-d 没有数据 &#8211;add-drop-table 在每个create语句之前增加一个drop table<br />
4.带语言参数导出<br />
mysqldump -uroot -p &#8211;default-character-set=latin1 &#8211;set-charset=gbk &#8211;skip-opt database_name &gt; outfile_name.sql</p>
<p>&nbsp;</p>
<p>本文来自CSDN博客，转载请标明出处：http://blog.csdn.net/networld2002/archive/2009/04/23/4103407.aspx</p>
<img src ="http://www.blogjava.net/spark/aggbug/304782.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2009-12-04 15:38 <a href="http://www.blogjava.net/spark/archive/2009/12/04/304782.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>windows平台下Apache2.2+php5+MySQL5+zend的环境搭建配置（转）</title><link>http://www.blogjava.net/spark/archive/2009/12/04/304781.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Fri, 04 Dec 2009 07:35:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2009/12/04/304781.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/304781.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2009/12/04/304781.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/304781.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/304781.html</trackback:ping><description><![CDATA[<div align="left">
<div>网上已经有很多此类文章了，但我在CSDN仍看到不少新人为此问题困扰。</div>
<div>&nbsp;</div>
<div><font color="#ff0000">1.便捷方法：装一体化环境</font>，如果你并非打算深入，或者刚入门。则可以先用一体化环境来配置。优点是下完安装即可使用，1分钟就能搞定。如果原来系统中装有IIS，则把端口设为 81或者其他非80端口。（以下皆为apache+php+mysql+zend）</div>
<div>&nbsp;</div>
<div>&nbsp; 1&gt; php4的一体化环境</div>
<div><a href="http://www.onlinedown.net/soft/22078.htm"><font face="宋体">http://www.onlinedown.net/soft/22078.htm</font></a></div>
<div>&nbsp;</div>
<div>&nbsp; 2&gt; php5的一体化环境</div>
<div><a href="http://www.onlinedown.net/soft/42567.htm"><font face="宋体">http://www.onlinedown.net/soft/42567.htm</font></a></div>
<div>&nbsp;</div>
<div><font color="#ff0000">2.如果你需要一个较为稳健而功能强劲的配置环境</font>，则参看以下。本文采用最新版本的php、apache、mysql、zend。</div>
<div>&nbsp;</div>
<div>其实，因为网上很多文章其实也没什么错，但有些细节的地方有问题。特别是在apache2.2.4与php5模块化安装的整合上。</div>
<div>&nbsp;</div>
<div>先准备安装文件，几个安装文件我用华军软件园的下载地址，大家放心下：</div>
<div>&nbsp;</div>
<div>apache2.2.4</div>
<div><a href="http://www.onlinedown.net/soft/11528.htm"><font face="宋体"><font color="#000000">最新版</font>http://www.onlinedown.net/soft/11528.htm</font></a></div>
<div><font face="宋体">发帖时最新版<a href="http://ytcnc.onlinedown.net/down/apache_2.2.4-win32-x86-no_ssl.zip">http://ytcnc.onlinedown.net/down/apache_2.2.4-win32-x86-no_ssl.zip</a></font></div>
<div>&nbsp;</div>
<div>php5.2.3</div>
<div>
<div><a href="http://www.onlinedown.net/soft/1772.htm"><font face="宋体"><font color="#000000">最新版</font>http://www.onlinedown.net/soft/1772.htm</font></a></div>
<div><font face="宋体">发帖时最新版<a href="http://sx.huajun.net/down/php-5.2.3-Win32.zip"><font face="宋体">http://sx.huajun.net/down/php-5.2.3-Win32.zip</font></a></font></div>
<div>&nbsp;</div>
<div>
<div>Mysql5.0.41</div>
<div><a href="http://www.onlinedown.net/soft/3573.htm"><font face="宋体"><font face="宋体"><font color="#000000">最新版</font>http://www.onlinedown.net/soft/3573.htm</font></font></a></div>
<div>
<div><font face="宋体">发帖时最新版</font><a href="http://sccnc.onlinedown.net/down/mysql-5.0.41-win32.zip">http://sccnc.onlinedown.net/down/mysql-5.0.41-win32.zip</a></div>
</div>
<div>&nbsp;</div>
<div>zend optimizer 3.2.6</div>
<div><font face="宋体">最新版<a href="http://www.onlinedown.net/soft/32228.htm">http://www.onlinedown.net/soft/32228.htm</a></font></div>
<div><font face="宋体">发帖时最新版<a href="http://sccnc.onlinedown.net/down/ZendOptimizer-3.2.6-Windows-i386.zip"><font face="宋体">http://sccnc.onlinedown.net/down/ZendOptimizer-3.2.6-Windows-i386.zip</font></a></font></div>
<div>&nbsp;</div>
<div>phpmyadmin</div>
<div>
<div><a href="http://www.onlinedown.net/soft/2616.htm"><font face="宋体"><font color="#000000">最新版</font>http://www.onlinedown.net/soft/2616.htm</font></a></div>
<div><font face="宋体">发帖时最新版</font><a href="http://sccnc.onlinedown.net/down/phpMyAdmin-2.10.3-rc1-all-languages.zip"><font face="宋体">http://sccnc.onlinedown.net/down/phpMyAdmin-2.10.3-rc1-all-languages.zip</font></a></div>
</div>
</div>
</div>
<div>&nbsp;</div>
<div>-----------------------------------------------------------------------</div>
<div>&nbsp;</div>
<div><font color="#ff0000">1.安装apache2.2.4</font>至某个目录比如我的是D:"apache2</div>
<div><font color="#ff0000">2.解压php5</font>到D:"apache2"php5目录下</div>
<div><font color="#ff0000">3.安装mysql5</font>到D:"apache2"mysql目录下</div>
<div>&nbsp;</div>
<div><font color="#ff0000">4.配置apache</font>：</div>
<div>&nbsp;1)打开d:"apache2"conf目录下的httpd.conf文件。</div>
<div>&nbsp;2)apache httpd.conf设置</div>
<div>&nbsp; <font color="#0000ff">A</font><font color="#0000ff">.网站主目录设置：</font>搜索<font face="宋体">DocumentRoot "D:/apache2/htdocs"</font></div>
<div>&nbsp; 修改引号中的地址，为apache网页主目录。也就是<a href="http://localhost/">http://localhost</a>:端口号的目录。</div>
<div>&nbsp;&nbsp;<font color="#0000ff">B.端口设置：</font>搜索 listen，改为 Listen 81（此例中以81为端口）。如不装IIS可保留默认值为80。设为81，则主页为 <a href="http://localhost:81/">http://localhost:81</a> 否则为<a href="http://localhost/">http://localhost</a></div>
<div>&nbsp; <font color="#0000ff">C.加载php5模块化安装：</font>搜索Loadmodule，在后面加一行：</div>
<div><font face="宋体">LoadModule php5_module d:/apache2/php/php5apache2_2.dll</font></div>
<div>&nbsp;</div>
<div>（这里是很多网上攻略出错的地方，apache2.2版本以下一般为</div>
<div><font face="宋体">LoadModule php5_module d:/apache2/php/php5apache2.dll</font></div>
<div>apache2.2以上的版本则不行。更有甚者，竟然把php5apache2.dll改写成支持apache2.2的了，牛是很牛了，但不知道中国搞技术的到底是怎么了，都懒得自主思考，一点怀疑精神都没有。）</div>
<div>&nbsp;&nbsp;</div>
<div>&nbsp;&nbsp;<font color="#0000ff">D. php格式解析</font></div>
<div>&nbsp;&nbsp; 搜索 addType application在后面加一行：</div>
<div><font face="宋体">&nbsp;&nbsp; AddType application/x-httpd-php .php</font></div>
<div>&nbsp;&nbsp;</div>
<div>&nbsp; <font color="#0000ff">E.字符集</font></div>
<div>
<p><font face="宋体">&nbsp; 搜索&nbsp;AddDefaultCharset ISO-8859-1 将其改为</font></p>
<p><font face="宋体">&nbsp; AddDefaultCharset GB2312</font></p>
<p><font color="#ff0000">5.配置php</font></p>
</div>
<div>&nbsp; 至D:"apache2"php目录下，把<font face="宋体">&nbsp;php.ini-dist或php.ini-recommended</font>拷贝至c:"windows目录下，改名为php.ini。拷贝D:"apache2"php目录下的<font face="宋体">php5ts.dll,libmysql.dll至C:"windows"system32目录下</font></div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; <font color="#ff9900">配置php.ini</font></div>
<div>&nbsp;&nbsp;&nbsp;<font color="#0000ff">A.找到</font><font face="宋体"><font color="#0000ff">extension_dir设置为 "d:"apache2"php"ext"</font>绝对路径，否则有些环境中会出错。</font></div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;</div>
<div>&nbsp;&nbsp; <font color="#0000ff">b.打开功能扩展</font></div>
<div><font face="宋体">搜索以下行，把前面的分号删除。比如</font></div>
<div><font face="宋体">&#8220;;extension=php_mysql.dll&#8221;改为&#8220;<font face="宋体">extension=php_mysql.dll<br />
</font>&#8221;<br />
</font></div>
<div><font face="宋体">#下面两行为mysql5必备，记得php_mysqli.dll必须加载，否则连不上。</font></div>
<div><font face="宋体">extension=php_mysql.dll&nbsp;&nbsp;</font></div>
<div><font face="宋体">extension=php_mysqli.dll</font></div>
<div>&nbsp;</div>
<div>#php连sql server，有用到的就设置一下</div>
<div><font face="宋体">extension=php_mssql.dll</font></div>
<div><font face="宋体"><br />
#curl功能扩展，想用php写些脚本处理远程服务期的响应消息的可以打开</font></div>
<div>extension=php_curl.dll</div>
<div>&nbsp;</div>
<div>#GD库安装，此功能打开可用数据库以二进制存储图片<br />
extension=php_gd2.dll</div>
<div>&nbsp;</div>
<div>#东亚语系必备，增加字符处理速度<br />
extension=php_mbstring.dll</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; <font color="#0000ff">C.实用功能自定义配置</font></div>
<div>&nbsp;</div>
<div><font color="#000000">#session的存储目录。如果有内存虚拟硬盘，可以把用到的暂存处理目录都设置到</font></div>
<div><font color="#000000">内存虚拟盘中进一步提高服务器响应速度。</font></div>
<div>&nbsp; &nbsp;<font color="#0000ff">session.save_path = D:/apache2/htdocs/php_session</font><font color="#0000ff">&nbsp;</font></div>
<div>&nbsp;</div>
<div><font color="#000000" face="宋体">#这个是每个脚本运行的最长时间，可以自己修改加长，单位秒</font></div>
<div><font color="#0000ff"><font face="宋体"><font color="#0000ff"><font face="宋体">max_execution_time = 30</font></font></font></font></div>
<p><font color="#0000ff"><font face="宋体"><font color="#000000">#这是每个脚本可以消耗的时间，单位也是秒<br />
</font>max_input_time = 60</font></font></p>
<p><font color="#000000">#这个是脚本运行最大消耗的内存，最好设为16M以上，有的程序要求，比如openads</font></p>
<p><font color="#0000ff"><font face="宋体">memory_limit = 16M</font></font></p>
<p><font color="#000000" face="宋体">#上载文件的最大许可大小，一般post大小&gt;upload_max_filesize。比如我的设置：</font></p>
<p><font color="#0000ff"><font color="#0000ff"><font face="宋体">post_max_size = 300M</font></font></font></p>
<p><font color="#0000ff"><font face="宋体">upload_max_filesize = 250M</font></font></p>
<p><font color="#000000">6.至此，配置完成大半。</font></p>
<p><font color="#000000">mysql与zend只要按需安装即可。装完后重启apache服务器即可。</font></p>
<p><font color="#000000">7.最后推荐个好东西，apache的monitor.exe，可以控制apache、myql、IIS、sql server等服务器开关。好东西，我找了挺久的。感谢原作者，抱歉忘了大名</font></p>
<p><font color="#0000ff"><a href="http://www.1thz.cn/apachemonitor.exe">http://www.1thz.cn/apachemonitor.exe</a></font></p>
<div>&nbsp;&nbsp;</div>
<div>8.如果您对服务器性能要求很高，我这里推荐您一个非常棒的平台组合。lighttpd可以取代apache，更轻，性能更优秀。 PostPre SQL 取代 Mysql，极其强大的开源数据库，完全满足企业商务级数据库需求。</div>
</div>
<img src ="http://www.blogjava.net/spark/aggbug/304781.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2009-12-04 15:35 <a href="http://www.blogjava.net/spark/archive/2009/12/04/304781.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Eclipse中不能按application执行java类的问题</title><link>http://www.blogjava.net/spark/archive/2007/09/30/149865.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Sun, 30 Sep 2007 05:10:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2007/09/30/149865.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/149865.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2007/09/30/149865.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/149865.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/149865.html</trackback:ping><description><![CDATA[<p>在eclipse中，新建了一个带main函数的class文件，结果不能按java application执行，<br />
提示错误 ：editor does not contain a main type 。<br />
网上也没找到原因，又重新新建了几个class也不行，<br />
后来我重新建了个项目，<br />
然后在新建class就可以。。<br />
我仔细看了下，<br />
在出问题的项目中建立class时，上面有提示不是java project，奇怪，我建立项目的时候是java project的，<br />
可能就是这个原因，<br />
希望出这个问题的朋友能在这里搜索到。。</p>
 <img src ="http://www.blogjava.net/spark/aggbug/149865.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2007-09-30 13:10 <a href="http://www.blogjava.net/spark/archive/2007/09/30/149865.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Eclipse中配置tomcat</title><link>http://www.blogjava.net/spark/archive/2006/10/08/73713.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Sun, 08 Oct 2006 02:09:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2006/10/08/73713.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/73713.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2006/10/08/73713.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/73713.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/73713.html</trackback:ping><description><![CDATA[		<h1 style="MARGIN: 17pt 0cm 16.5pt">
				<span lang="EN-US">
						<font face="Arial">1&gt;JDK</font>
				</span>
		</h1>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">版本：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt; COLOR: black; FONT-FAMILY: ˎ̥">j2sdk<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /?><st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False">1.4.2</st1:chsdate><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /?><o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">配置属性，打开我的电脑</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">,</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">属性，高级，环境变量：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt">1&gt;</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在系统变量中的</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">path</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">下加：</span>
				<span style="FONT-SIZE: 14pt">
						<span lang="EN-US">;C:\jdk\bin<span style="mso-spacerun: yes">&#160;&#160; </span></span>
				</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">（</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">C:\jdk</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">为</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">jdk</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">安装目录）</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt">2&gt;</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在用户变量里新建：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt 36pt; TEXT-INDENT: -36pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt; mso-bidi-font-family: 宋体">
						<span style="mso-list: Ignore">（1）<span style="FONT: 7pt 'Times New Roman'"></span></span>
				</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">变量名：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">JAVA_HOME</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">变量值：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">C:\jdk<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt 36pt; TEXT-INDENT: -36pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt; mso-bidi-font-family: 宋体">
						<span style="mso-list: Ignore">（2）<span style="FONT: 7pt 'Times New Roman'"></span></span>
				</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">变量名：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">CLASSPATH <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 49pt; mso-char-indent-count: 3.5">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">变量值：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 15pt">
						<span style="mso-spacerun: yes">&#160;</span>.;C:\jdk\lib\dt.jar;C:\jdk\lib\tools.jar;C:\jdk\jre\lib\rt.jar<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 15pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">到命令行（运行－</span>
				<span lang="EN-US" style="FONT-SIZE: 15pt">cmd</span>
				<span style="FONT-SIZE: 15pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">）输入</span>
				<span lang="EN-US" style="FONT-SIZE: 15pt">javac</span>
				<span style="FONT-SIZE: 15pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">命令查看是否配置正确。</span>
				<span lang="EN-US" style="FONT-SIZE: 15pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<h2 style="MARGIN: 13pt 0cm">
				<span lang="EN-US">
						<font face="Arial">2&gt;Tomcat</font>
				</span>
		</h2>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">版本：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">jakarta-tomcat-<st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False">5.0.28</st1:chsdate><o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt">2&gt;</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在用户变量里修改</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">CLASSPATH</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 黑体; mso-hansi-font-family: 华文仿宋">增加 <span lang="EN-US">;D:\tomcat\common\lib\servlet-api.jar<o:p></o:p></span></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 黑体; mso-hansi-font-family: 华文仿宋">（<span lang="EN-US">D:\tomcat</span>为<span lang="EN-US">tomcat</span>的安装目录）<span lang="EN-US"><o:p></o:p></span></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">注：启动</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">tomcat</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">的方法：</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 14pt">Windows: </span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">D:\Tomcat\bin</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">下双击</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">startup.bat </span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">关闭则为</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">D:\Tomcat\bin</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">下</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">shutdown.bat<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">启动</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">tomcat</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">后到</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">ie</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">输入</span>
				<span lang="EN-US" style="FONT-SIZE: 14pt">
						<a href="http://localhost:8080/">http://localhost:8080</a>
				</span>
				<span style="FONT-SIZE: 14pt; FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">检查配置是否正确。<br /><br />3&gt; Eclipse:<br /><img height="1050" alt="1.JPG" src="http://www.blogjava.net/images/blogjava_net/spark/1.JPG" width="1400" border="0" /><br /><br /><img height="431" alt="2.JPG" src="http://www.blogjava.net/images/blogjava_net/spark/2.JPG" width="616" border="0" /></span>
		</p>
 <img src ="http://www.blogjava.net/spark/aggbug/73713.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2006-10-08 10:09 <a href="http://www.blogjava.net/spark/archive/2006/10/08/73713.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>tomcat中的java_home问题</title><link>http://www.blogjava.net/spark/archive/2006/09/29/72741.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Fri, 29 Sep 2006 02:40:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2006/09/29/72741.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/72741.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2006/09/29/72741.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/72741.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/72741.html</trackback:ping><description><![CDATA[		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">在用</span>
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">tomcat</span>
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">做服务器调试</span>
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">jsp</span>
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">的时候。总是报这个错误：</span>
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">
						<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /?>
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">Unable to find a javac compiler; <br />com.sun.tools.javac.Main is not on the classpath. <br />Perhaps JAVA_HOME does not point to the JDK<o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt">
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">上网找了下才知道是要把</span>
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">jdk\lib\tools.jar</span>
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">文件拷贝到</span>
				<span lang="EN-US" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana">tomcat\common\lib</span>
				<span style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana">下才行。</span>
		</p>
 <img src ="http://www.blogjava.net/spark/aggbug/72741.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2006-09-29 10:40 <a href="http://www.blogjava.net/spark/archive/2006/09/29/72741.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>eclipse不能启动的jdk版本问题</title><link>http://www.blogjava.net/spark/archive/2006/09/29/72737.html</link><dc:creator>空空</dc:creator><author>空空</author><pubDate>Fri, 29 Sep 2006 02:27:00 GMT</pubDate><guid>http://www.blogjava.net/spark/archive/2006/09/29/72737.html</guid><wfw:comment>http://www.blogjava.net/spark/comments/72737.html</wfw:comment><comments>http://www.blogjava.net/spark/archive/2006/09/29/72737.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/spark/comments/commentRss/72737.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/spark/services/trackbacks/72737.html</trackback:ping><description><![CDATA[		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">在装了</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">eclipse</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">后，又装了</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">oracle</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">，然后</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">eclipse</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">就启动不了了，总是报</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">jdk</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的版本问题。<br />上网查了下才知道是</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">oracle</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">jdk</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">版本是</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">1.3</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">，</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">eclipse</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">用的是jdk</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">1.4,<br /></span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">需要将</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">1.4</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">jdk\bin</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的路径在</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">path</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">里放在</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">oracle</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">的</span>
		<span lang="EN-US" style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA; mso-fareast-font-family: 宋体">jdk</span>
		<span style="FONT-SIZE: 10.5pt; FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">路径的前面才行。</span>
 <img src ="http://www.blogjava.net/spark/aggbug/72737.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/spark/" target="_blank">空空</a> 2006-09-29 10:27 <a href="http://www.blogjava.net/spark/archive/2006/09/29/72737.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>