文件: 备注:
上传到/WEB-INF/upload之后,文件名是乱码解决办法:UploadForm.reset()中添加代码: try {
request.setCharacterEncoding("U...
分类:
Web程序 时间:
2014-06-11 21:58:55
阅读次数:
222
/** * 得到汉字字库的集合 * @return */ public static Map
getChinaWordStorage() { BufferedReader bu=null; try { Map ma...
分类:
其他好文 时间:
2014-06-11 11:39:12
阅读次数:
265
//get 发送短信 public static String send_sms(String
mobile_phone, String msg) { String ret_str = ""; BufferedReader rd=null; try
{...
分类:
其他好文 时间:
2014-06-11 11:31:29
阅读次数:
216
在create table的时候出现如下问题
1. ERROR: java.io.IOException: Table Namespace Manager not ready yet, try again later
解决方案:这个问题是从单机配置到多机配置的时候出的问题,修改conf/hbase-env.sh 注释掉export HBASE_MANAGES_ZK=true...
分类:
其他好文 时间:
2014-06-09 23:38:14
阅读次数:
304
5年前写的站, 当时是在apache下写的error page, 换了nginx后, 404页面直接跳到了500 服务器内部错误.
只需要在配置
try_files 的时候指定一下就可以了
我的是debian, 在/etc/nginx/site-available/default 里面location /
server{
location / {
try_fi...
分类:
其他好文 时间:
2014-06-08 17:01:43
阅读次数:
204
Catch That Cow
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 44070
Accepted: 13764
Description
Farmer John has been informed of the location of a fugitiv...
分类:
其他好文 时间:
2014-06-08 15:44:43
阅读次数:
238
第一步写action方法:
public String exportActiveExcel()
{
String name ="活跃度列表.xls";
try {
name = java.net.URLEncoder.encode(name, "UTF-8");
fileNam...
分类:
编程语言 时间:
2014-06-08 15:18:02
阅读次数:
295
异步模型看起来很美,但其实它也是有天生缺陷的.看下面代码
try {
setTimeout( function(){
throw new Error( '你抓不到我的!' );
}, 100);
} catch (e) {
console.error(e);
}
如果你已经理解了上一篇博客,那你一定了解了这样的写法是捕...
分类:
编程语言 时间:
2014-06-08 14:54:17
阅读次数:
328
public static Date stringToDate(String str) {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
try {
// Fri Feb 24 00:00:00 CST...
分类:
编程语言 时间:
2014-06-08 09:49:00
阅读次数:
268
public string CreateWordFile(string CheckedInfo)
{
string message = "";
try
{
Object Nothing = System.Reflection.Missing.Value;
Directory.CreateDirectory("C:/CNSI"); //创建文件所在目录
string name = "CNSI.doc...
分类:
其他好文 时间:
2014-06-08 04:57:55
阅读次数:
291