招聘jsp\php网站开发程序员
上海泽武网络有限公司
招聘:招聘jsp\php网站开发程序员
要求有三年以上开发经验
对Tomcat+Apache集群技术有熟悉的经验.对搜索引擎技术(Lucene)比较了解。
-熟练使用UML建模工具、版本控制工具; 熟练使用Eclipse等IDE开发工具;
-精通JAVA,php,深入理解OOP思想,熟悉设计模式。
-熟练运用J2EE技术、WEB服务器和关系型数据库;
-熟练Struts2.x、Spring、hibernate、iBatis框架技术,熟练使用Freemarker;
-熟悉TCP/IP、Socket和Webservice编程,熟练Linux系统、串口通信和蓝牙技术。
-踏实,稳重;工作认真,责任心强,良好的表达、沟通和团队协调能力。
相关文档:
(转载标签:fckeditorit 分类:Java)
1.将FCKeditor目录下的editor拷贝到项目的WebContent目录下
2.并把ECKeditor-2.3.jar 和 commons-fileupload.jar拷贝到项目\WebContent\WEB-INF\lib目录下
3.把 FCKeditor.tld拷贝到项目\WebContent\WEB-INF下
4.在web.xml里添加如下代码
代码
<servlet> ......
<%
Cookie[] cooks = request.getCookies();
String cookieName = "Mycookie";
boolean flag = false;
for(Cookie cook : cooks)
{
if(cook.getName().equals(cookieName))
{
flag = true;
break;
}
}
if(!flag){
String str=System.currentTimeMillis()+"";
Cook ......
1. 怎么在多个JSP页面之间进行参数传递?需要使用JSP的内置作用域对象session。利用它的两个方法setAttribute(),getAttribute()
2. 下面的这个实例实现了把第一个JSP页面的参数传递给第三个页面的功能
3. &nbs ......
<?php
$s = <<<html
<html>
<head>
<title>nested tag test</title>
<mce:script type="text/javascript"><!--
alert('fdsafdasfasd');
// --></mce:script>
</head>
<body>
<div id=0>
<div id=1><img name="im ......
闲话少说,先将它们打包成一个文件就叫fun.php吧
< ?php
function passport_encrypt($txt, $key) {
srand((double)microtime() * 1000000);
$encrypt_key = md5(rand(0, 32000));
$ctr = 0;
$tmp = ''; ......