码迷,mamicode.com
首页 >  
搜索关键字:file    ( 50992个结果
遍历文件
public function findfile($arr) { $files = array(); foreach ($arr as $file) { $child = glob($file."/*"); ...
分类:其他好文   时间:2014-06-29 15:05:49    阅读次数:200
Ubuntu下wxWidgets学生信息管理sqlite3(C++)
main.cxx#include #include #include #include using namespace std; int main() { sqlite3* file; int flag; flag = sqlite3_open("./stu.db", &file); if(...
分类:数据库   时间:2014-06-29 14:36:03    阅读次数:254
php学习之目录
一、 关于php中dirname(_file_)的使用 php中定义了一个很有用的常数,即 __file__ 这个内定常数是当前php程序的就是完整路径(路径+文件名)。 即使这个文件被其他文件引用(include或require),__file__始终是它所在文件的完整路径,而不是引用它的...
分类:Web程序   时间:2014-06-07 04:30:13    阅读次数:253
miui patchrom makefile
## Makefile for h30_u10## The original zip file, MUST be specified by each productlocal-zip-file := stockrom.zip# The output zip file of MIUI rom,...
分类:其他好文   时间:2014-05-30 08:40:13    阅读次数:333
如何收缩表空间大小
转摘:oracle数据库表空间文件收缩实例 1.查看数据文件的使用情况包括内容:数据文件大小,已经used空间,free空间,hwm信息 1 select /*+ ordered use_hash(a,b,c) */ 2 a.file_id,a.file_name,a.filesize, b.fre...
分类:其他好文   时间:2014-05-30 05:45:38    阅读次数:342
Hadoop中两表JOIN的处理方法
http://dongxicheng.org/mapreduce/hadoop-join-two-tables/http://dongxicheng.org/mapreduce/run-hadoop-job-problems/http://dongxicheng.org/mapreduce/hdfs...
分类:其他好文   时间:2014-05-29 12:27:09    阅读次数:260
使用MyEclipse生成可运行的Jar文件
使用MyEclipse的Export功能可以方便地生成简单的Jar工具类。具体步骤如下:选择File -> Export,在弹出的窗口选择Java -> Runnable JAR File,如下图所示:在Launch configuratioin 下选择相应的Java文件,在Export desti...
分类:系统相关   时间:2014-05-29 09:45:32    阅读次数:362
将控制台上的东西写到本地磁盘
/** *将控制台文件输出到本地磁盘 */ public void writeDiskInfo() { String dirName = "f:\\disk\\"; String fileName = "磁盘信息.xml"; File file = new File(di...
分类:其他好文   时间:2014-05-29 08:22:59    阅读次数:288
fopen()和fclose()的用法
1.fopen()函数的用法fopen函数用于打开文件, 其调用格式为:FILE *fopen(char *filename, *type);fopen()函数中第一个形式参数表示文件名, 可以包含路径和文件名两部分。如:"B:TEST.DAT""C:\\TC\\TEST.DAT"注意:如果将路径写...
分类:其他好文   时间:2014-05-28 10:12:08    阅读次数:316
servlet文件上传
package com.peng.web;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileInputStream;import ...
分类:其他好文   时间:2014-05-28 09:49:08    阅读次数:276
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!