-
本程序实现任意文件的分割和合并,谢谢支持!希望对大家有帮助!...
本程序实现任意文件的分割和合并,谢谢支持!希望对大家有帮助!-the program division of arbitrary files and merger Thank you support! We want to help!
- 2022-07-23 16:44:48下载
- 积分:1
-
筛选器执行 dor 数字图像处理在 matleb
hwew 是我在 matlab 例程中的筛选器执行的一些。这些包括高通滤波器低通和拉普拉斯筛选器。希望它将对初学者有用。
- 2022-05-21 23:14:55下载
- 积分:1
-
Avr 单片机的 SPI 头文件 (书面 ATmega128,但它应该工作为其他 AVR 太)
这是一个AVR单片机的一些书面的广义SPI的头文件
- 2022-04-18 12:26:18下载
- 积分:1
-
window handle through the implementation of File Name
通过窗口句柄得到执行文件名 -window handle through the implementation of File Name
- 2022-02-14 04:22:56下载
- 积分:1
-
此原代码是在用IIC写入EEPROM之前从txt文件读入相关数据后根据一定的数据结构生成BIN文件的文件操作,此为最初版本,最终版本已经完成....
此原代码是在用IIC写入EEPROM之前从txt文件读入相关数据后根据一定的数据结构生成BIN文件的文件操作,此为最初版本,最终版本已经完成.-this is the original code used before the IIC EEPROM write from txt file into the related data according to a the data structure formation BIN files operation for this initial version, the final version has been completed.
- 2022-02-03 23:29:49下载
- 积分:1
-
notepad plus是sourceforge上一个非常优秀的开源项目,是用C++编写的,相当于很多语言的编译器...
notepad plus是sourceforge上一个非常优秀的开源项目,是用C++编写的,相当于很多语言的编译器-sourceforge on notepad plus is a very good open source project, is to use C prepared, which is equivalent to many language compiler
- 2022-04-29 11:41:56下载
- 积分:1
-
lzss + RLE + huffman. 为了保持比较快的速度, 只对Flag进行huffman编码. 可以用于嵌入式代码压缩.压缩率比LZSS要大, 速度和...
lzss + RLE + huffman. 为了保持比较快的速度, 只对Flag进行huffman编码. 可以用于嵌入式代码压缩.压缩率比LZSS要大, 速度和LZSS稍慢, 如果不用huffman, 速度和LZSS差不多. -lzss+ RLE+ huffman. in order to maintain a relatively fast speed, only to Flag for huffman coding. can be used for embedded code compression. LZSS compression rate than the larger, slower speed and LZSS, if it is not huffman, speed and LZSS almost.
- 2022-06-29 20:56:32下载
- 积分:1
-
vb connecting excel spreadsheet. Zip is the development of an Institute of syste...
vb连接 excel电子表格.zip是我在开发一个学院的系统是需要用道德就总结了一下先给大家。-vb connecting excel spreadsheet. Zip is the development of an Institute of system is needed to summarize the moral about letting everyone.
- 2022-10-31 08:45:02下载
- 积分:1
-
INI文件的操作,是使用非常方便:1。首先,inifil删除…
操作INI文件,非常方便...
使用方法:
1.先把IniFile.h,IniFile.ccp加入Porject,在要使用该类的头文件中加入
#include "IniFile.h",及CIniFile IniFile
2.读取和写入:
string = IniFile.GetString("section","item","默认")
int = IniFile.GetInt("section","item",666)
IniFile.SetString("section","item","设置值")
IniFile.SetInt("section","item",666)
3.ini文件名及路径在初始化时,用SetFileName()设置-Operation of INI file, is very convenient to use ...: 1. First IniFile.h, IniFile.ccp adding Porject, to be used in the first such document by adding# Include
- 2023-07-09 08:15:03下载
- 积分:1
-
CI框架上传类改写,支持多附件上传
CI框架上传类改写,
原来的程序只支持一个附件上传,并不支持控件数组上传。
现已修改支持多附件上传。将该文件放到自己程序目录中的libraries文件夹下。
调用如下:
// 附件上传处理
$folder = date("Ym");
$upload_dir = APPPATH . "/app/upload/".$folder;
$config["upload_path"] = $upload_dir;
$config["allowed_types"] = "gif|jpg|png|txt|doc|docx|xls|xlsx|ppt|pptx|pdf";
$config["max_size"] = "5120";
$config["max_width"] = "0";
$config["max_height"] = "0";
$config["max_filename"] = "0";
$config["overwrite"] = false;
$config["encrypt_name"] = true;
$config["remove_spaces"] = true;
$this->load->library("upload", $config);
$field_name = "att";
if (!$this->upload->do_upload($field_name, true))
{
// 出错
$error = array("error" => $this->upload->display_errors());
} else {
// 正
- 2022-05-05 09:14:31下载
- 积分:1