在本地开发环境中,一切正常,部署到服务器后(windows 2003 +
tomcat)含有中文的查询和表单提交都有乱码,从以下几个方面检查并解决了问题:1、将所有jsp、js、css文件默认编码改为了utf-8,未解决问题。2、struts2的配置文件中加入了节点:
,未解决问题。3、web.xm...
分类:
数据库 时间:
2014-04-30 00:36:57
阅读次数:
588
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
Ifactory ifactory =...
分类:
其他好文 时间:
2014-04-30 00:33:52
阅读次数:
504
1 package cn.tfri.filter.watermark; 2 3 import
java.io.IOException; 4 5 import javax.servlet.Filter; 6 import
javax.servlet.FilterChain; 7 import j...
分类:
其他好文 时间:
2014-04-30 00:31:48
阅读次数:
652
coursera上面Andrew NG的Machine
learning课程地址为:https://www.coursera.org/course/ml我曾经使用Logistic
Regression方法进行ctr的预测工作,因为当时主要使用的是成型的工具,对该算法本身并没有什么比较深入的认识,不过...
分类:
其他好文 时间:
2014-04-30 00:30:46
阅读次数:
698
最近在看jdk1.7的时候,发现LinkedList
和1.6中的变化。首先,简单介绍一下LinkedList:LinkedList是List接口的双向链表实现。由于是链表结构,所以长度没有限制;而且添加/删除元素的时候,只需要改变指针的指向(把链表断开,插入/删除元素,再把链表连起来)即可,非常方...
分类:
其他好文 时间:
2014-04-30 00:28:44
阅读次数:
442
转自:http://blog.csdn.net/cnjsnt_s/article/details/5548280具体使用时需要参考:http://blog.csdn.net/codeforme/article/details/5539454
(注:没看很明白,囧。)MySQL有两种常用的引擎类型:M...
分类:
数据库 时间:
2014-04-30 00:24:37
阅读次数:
619
The gray code is a binary numeral system where
two successive values differ in only one bit.Given a non-negative
integernrepresenting the total number...
分类:
其他好文 时间:
2014-04-30 00:21:32
阅读次数:
536
题意为从每行取一瓶花,每瓶花都有自己的审美价值第 i+1 行取的花位于第 i
行的右下方求最大审美价值dp[i][j]:取到第 i 行,第 j
列时所获得的最大审美价值动态转移方程:dp[i][j]=max(dp[i-1][j-1]+a[i][j],dp[i][j-1])代码如下:#includei...
分类:
其他好文 时间:
2014-04-30 00:17:20
阅读次数:
488
【获取iPod library中的媒体文件】 The Media Player
framework provides facilities for playing movie, music, audio podcast, and audio
book files. This framework a....
分类:
其他好文 时间:
2014-04-30 00:15:17
阅读次数:
591
久仰cocos2dx的大名想要研习一下一直苦于没有时间,最近不是很忙想起这茬,准备恶补一番,先上网大致查了下资料,发现cocos2dx开发环境的搭建貌似还挺麻烦的(可能与多平台支持有关),在官网下载了最新的cocos2dx
3.0 rc 版,配置方式参考了这篇文章http://blog.csdn.....
分类:
其他好文 时间:
2014-04-30 00:09:07
阅读次数:
693