摘要: linux gbk 转 UTF-8 iconv 用法 iconv -f "gbk" -t "utf-8" < infile > outfile 或者 piconv -f "gbk" -t "utf-8" < infile > outfile iconv -f utf-8 -t GBK 123456. 阅读全文
posted @ 2016-11-18 13:33 Victory-xx 阅读(9165) 评论(0) 推荐(0)
摘要: 恢复内容开始 Map<String, List> map=new HashMap<String,List>() HashMap可以理解成是一对对数据的集合我暂时把List 改成String 方便理解Map<String, String> map=new HashMap<String,String>( 阅读全文
posted @ 2016-11-08 18:15 Victory-xx 阅读(447) 评论(0) 推荐(0)
摘要: 原文出自:http://www.newasp.net/tech/71609.html web.xml配置: 这样,所有的.htm的请求,都会被DispatcherServlet处理; 初始化 DispatcherServlet 时,该框架在 web 应用程序WEB-INF 目录中寻找一个名为[ser 阅读全文
posted @ 2016-11-04 16:32 Victory-xx 阅读(4655) 评论(0) 推荐(0)
摘要: 创建分支 git branch 没有参数,显示本地版本库中所有的本地分支名称。 当前检出分支的前面会有星号。 git branch newname 在当前检出分支上新建分支,名叫newname。 git checkout newname 检出分支,即切换到名叫newname的分支。 git chec 阅读全文
posted @ 2016-11-04 16:12 Victory-xx 阅读(177) 评论(0) 推荐(0)
摘要: 使用IntelliJ IDEA开发SpringMVC网站(一)开发环境 使用IntelliJ IDEA开发SpringMVC网站(二)框架配置 使用IntelliJ IDEA开发SpringMVC网站(三)数据库配置 使用IntelliJ IDEA开发SpringMVC网站(四)用户管理 使用Int 阅读全文
posted @ 2016-11-02 15:21 Victory-xx 阅读(165) 评论(0) 推荐(0)