码迷,mamicode.com
首页 >  
搜索关键字:tomcat start stop restart    ( 54862个结果
instr函数
在Oracle/PLSQL中,instr函数返回要截取的字符串在源字符串中的位置。instr是一个非常好用的字符串处理函数,几乎所有的字符串分隔都用到此函数。。语法如下: instr( string1, string2, start_position,nth_appearance ) strin.....
分类:其他好文   时间:2014-05-16 03:33:52    阅读次数:262
解压包版tomcat 手动启动一闪而过问题
本人使用的Tomcat版本为apache-tomcat-6.0.18(用的是解压包),在eclipse下能够正常启动,可是当手动通过cmd进入bin目录启动startup.bat个时候提示:The JAVA_HOME environment variable is not defined co...
分类:其他好文   时间:2014-05-16 03:28:36    阅读次数:334
Radar之获取排列的UITexture数组
1.定义UITexture二维数组public UITexture[,] m_UITexture;2.在 void start() 中分配内存m_UITexture = new UITexture[30, 50];3.遍历排列的UITexture//用UITexture数组获取UITexture ....
分类:其他好文   时间:2014-05-16 01:17:09    阅读次数:316
Tomcat学习之二:tomcat安装、配置及目录文件说明
我们看到tomcat目录/bin文件夹里有个tomcat6w.exe,顾名思义就是tomcat以window方式显示控制台。第1次点击打开它时候,可能会提示:tomcat指定的服务未安装,此时我们可以这样解决它。 打开命令行提示符窗口-> 进入Tomcat安装目录-> 进入bin目录下-> 输...
分类:其他好文   时间:2014-05-15 22:02:17    阅读次数:425
我的MySQL应用笔记
启动:net start mySql; 进入:mysql -u root -p/mysql -h localhost -u root -p databaseName; 列出数据库:show databases; 选择数据库:use databaseName; 列出表格:show tables...
分类:数据库   时间:2014-05-15 21:36:56    阅读次数:366
Apache Tomcat/6.0.39如何配置连接mysql,JDBC:mysql-connector-java-5.1.30-bin.jar-成功连接心得
http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html前提:开启TOMCAT,MYsqlMySQL DBCP Example0. IntroductionVersions of MySQL and JDB...
分类:数据库   时间:2014-05-15 20:56:04    阅读次数:550
servlet下根据相对路径找资源
1.在web项目中如果直接添加一个资源,那么相对路径相对的是tomcat的bin目录。 2.在包中直接指定资源,那么可以使用以下的相对路径直接获取资源: InputStream in = this.getClass().getResourceAsStream("jnb.txt");3.在web项目....
分类:其他好文   时间:2014-05-15 20:48:19    阅读次数:257
javaEE jsp 中文乱码问题
如果使用Tomcat服务器,在提交过程中,经常会出现中文乱码问题。乱码问题分为两个方面: 1.中文无法显示 有些JSP中,中文根本无法显示。通常的原因是没有把文件头的字符集设置为中文字符集。一定要保证文件头上写明: 或者 2.提交过程中显示乱码 前台提交给服务器时,服务器将其认为ISO-8859-1编码,而网页显示的是GB2312编码,不能兼容。有三种方法解决这个问题: (1)将其...
分类:编程语言   时间:2014-05-15 20:15:57    阅读次数:372
was unable to start within 45 seconds. If the server requires more time, try increasing the timeout
在eclipse启动tomcat时遇到超时45秒的问题: Server Tomcat v7.0 Server at localhost was unable to startwithin 45 seconds. If the server requires more time, try increasingthe timeout in the server editor. 网上解决办法...
分类:其他好文   时间:2014-05-15 18:31:36    阅读次数:242
PHP 生成指定大小随机图片
PHP生成指定大小随机图片 $image_width){ for ($i=$start; $i<$image_height * 2; $i+=$step) { imageline($img, 0, $i, $i, 0, $color); }}else{ for ($i=$start; $i<$im....
分类:Web程序   时间:2014-05-15 17:42:03    阅读次数:377
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!