码迷,mamicode.com
首页 >  
搜索关键字:tmp    ( 7796个结果
怎么将控制台的打印输出到文本文件中
Console.WriteLine("Hello World"); FileStream fs1 = new FileStream("Test.txt", FileMode.Create); // First, save the standard output. TextWriter tmp ...
分类:其他好文   时间:2014-11-19 20:17:39    阅读次数:151
Mysql临时表
当你创建临时表的时候,你可以使用temporary关键字。如: create temporary table tmp_table(name varchar(10) not null,passwd char(6) not null)‘或 CREATE TEMPORARY TABLE IF NOT E....
分类:数据库   时间:2014-11-19 17:57:03    阅读次数:231
php文件操作基本用法
<?php /* $fp=fopen("tmp.html","r"); $str=fread($fp,filesize("tmp.html")); $str=str_replace("{title}",'新标题',$str); $str=str_replace("{content}",'新内容',$str); fclose($fp); $handle=fopen('new.html','...
分类:Web程序   时间:2014-11-19 16:01:11    阅读次数:171
PHP上传文件(学习)
<?php if(isset($_FILES['upfile'])) { if (is_uploaded_file($_FILES['upfile']['tmp_name'])){ $upfile=$_FILES["upfile"]; $name = $upfile["name"]; $type = $upfile["type"]; $size = $upfile["size"]; $tmp...
分类:Web程序   时间:2014-11-19 11:22:18    阅读次数:200
【权值分块】bzoj1503 [NOI2004]郁闷的出纳员
权值分块,离散化非常蛋疼,只能离散化搞……需要支持操作:删除 2 #include 3 #include 4 #include 5 using namespace std; 6 #define N 201001 7 struct Point{int v,p;}tmp[N]; 8 boo...
分类:其他好文   时间:2014-11-19 10:25:51    阅读次数:227
ACM经典算法之字符串处理:字符串替换
语法:replace(char str[],char key[],char swap[]); 参数: str[]:在此源字符串进行替换操作 key[]:被替换的字符串,不能为空串 swap[]:替换的字符串,可以为空串,为空串表示在源字符中删除key[] 返回值:null 注意:默认str[]长度小于1000,如否,重新设定设定tmp大小 需要 string.h 源...
分类:编程语言   时间:2014-11-19 01:39:39    阅读次数:251
PHP上传文件(学习)
<?php if(isset($_FILES['upfile'])) { if (is_uploaded_file($_FILES['upfile']['tmp_name'])){ $upfile=$_FILES["upfile"]; $name = $upfile["name"]; $type = $upfile["type"]; $size = $upfile["size"]; $tmp...
分类:Web程序   时间:2014-11-19 01:22:00    阅读次数:196
PHP多功能图片处理类
setSrcImg("img/test.jpg"); $t->setCutType(1);//这一句就OK了 $t->setDstImg("tmp/new_test.jpg"); $t->createImg(60,60); 手工裁切: ...
分类:Web程序   时间:2014-11-18 17:22:54    阅读次数:295
activemq下载安装配置
http://www.apache.org/dyn/closer.cgi?path=/activemq/5.10.0/apache-activemq-5.10.0-bin.tar.gzactivemq下载地址解压启动nohup./activemqstart&>/tmp/smlog访问http://localhost:8161/admin/默认密码adminadmin下面是activemq的测试[root@localhostbin]#telnet192.16..
分类:其他好文   时间:2014-11-17 14:18:31    阅读次数:176
python 监视文件目录
该例子为用watchdog来监视新文件,当新文件来时候,调用相应的解析脚本,进行解析入库。 目录: -scripts ????--脚本1.py ????--脚本2.py -tmp ????--已处理的文件1, ????--已处理的文件2 confi...
分类:编程语言   时间:2014-11-17 12:37:46    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!