1.获取CSV数据内容public static Object[][]
getFromCSV(String filename) { if (!(new File(filename)).exists()){ return null;
} Object[][] content; CSVReader r....
分类:
Web程序 时间:
2014-07-22 23:16:34
阅读次数:
467
问题现象:
导入新的maven项目时,有时候pom.xml文件会提示一个错误信息:Missing artifact com.sun:tools:jar:1.5.0:system
问题原因:
maven是需要使用Jdk中的tools工具,而eclipse使用的是jre的运行环境,导致maven无法找到Jdk工具包tools.jar
解决方法:
1>将eclipse修改为jd...
分类:
其他好文 时间:
2014-05-01 17:56:11
阅读次数:
343
/// /// 读取配置文件keys /// /// public string _GetKeys()
{ string filename = Server.MapPath("/") + @...
分类:
Web程序 时间:
2014-05-01 15:56:57
阅读次数:
391
YII 伪静态 IIS7 方法 web.config 注意把filename
改成对应的yii目录地址,我的这个是把YII嵌套到另一个程序里边了
分类:
Web程序 时间:
2014-05-01 14:06:16
阅读次数:
571
//动态加载一个js/css文件 function
loadjscssfile(filename, filetype) { if (filetype == "js") { var fileref =
document.createEl...
分类:
Web程序 时间:
2014-05-01 00:51:10
阅读次数:
451
apt-get install package 安装包 apt-get install package
--reinstall 重新安装包 apt-get -f install 强制安装?#"-f = --fix-missing"当是修复安装吧...
apt-get remove ...
分类:
其他好文 时间:
2014-05-01 00:38:45
阅读次数:
347
【创建目录】using
System.IO;Directory.CreateDirectory(FilePath);【使用WriteFile下载文件】private string
fileName = HttpContext.Current.Server.UrlEncode("规范.rar"); p...
分类:
其他好文 时间:
2014-04-30 23:34:03
阅读次数:
443
推荐使用第一种第一种: //对接收的文件名的合法性进行验证 String
fileName="127.0.0.1_01_20140428165022174.jpg"; String regEx =
"\\b.+_\\d+_\\d{17}\\b"; //正则表达式 ...
分类:
编程语言 时间:
2014-04-30 13:50:19
阅读次数:
366
字符串转json对象 SyntaxError: missing ; before
statementvar obj = eval("("+strJson+")");
分类:
Web程序 时间:
2014-04-29 17:18:46
阅读次数:
502
<?php
$filename="胡主席好.pdf";
if(!file_exists($filename))
{
echo "不存在此文件";
return;
}
$fp=fopen($filename,"r");
$file_size=filesize($filename);
//配置头文件
/...
分类:
Web程序 时间:
2014-04-29 13:42:20
阅读次数:
356