自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (18)
  • 收藏
  • 关注

原创 tomcat配置通过域名访问项目

tomcat配置通过域名访问项目,是修改conf/server.xml里面的配置信息实现。具体如下:(1)修改Connector节点的port属性值<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443...

2019-06-26 17:24:47 1928

原创 Python对文件的读写操作

Python使用open函数来读写文件,open函数的第一个参数是文件名,第二个参数是可选的,有4种常见模式:(1)r打开一个文件来读数据,这是默认模式;(2)w打开一个文件来写数据,如果文件已有数据,则会先清空数据;(3)a打开一个文件向文件末尾追加数据;(4)x打开一个新文件来写数据,如果文件已存在则失败;第2至4种模式如果第一个参数指定的文件不存在,则会先创建一个空文件。...

2019-06-23 23:02:07 1379

原创 模板引擎Jinja2的基本用法

Flask提供的模板引擎为Jinja2,易于使用,功能强大。模板仅仅是文本文件,它可以生成任何基于文本的格式(HTML、XML、CSV、LaTex 等等)。它并没有特定的扩展名, .html 或 .xml 都是可以的。模板包含 变量 或 表达式 ,这两者在模板求值的时候会被替换为值。模板中还有标签,控制模板的逻辑。Jinja2文档:http://docs.jinkan.org/docs/...

2019-06-23 14:53:32 1189

原创 使用Flask构建一个Web应用

Flask是一个使用Python编写的轻量级Web应用框架。一、安装Flask以管理员身份,打开命令提示符窗口,输入下面命令py -3 -m pip install flask这个命令会连接到PyPI网站下载和安装Flask模块,以及Flask依赖的几个模块:Werkzeug、MarkupSafe、Jinja2、itsdangerous、click。安装完成后,在命令提示符窗口...

2019-06-23 11:15:26 8563

原创 Python函数使用

Python函数用def指定函数名,可以指定输入参数,可以指定参数的默认值,也可以用return指定返回值。调用时除了默认的位置赋值,也可按关键字赋值。一、函数不带参数、没有返回值def hello(): print("hello world")二、函数带参数、没有返回值def hello(name): print("hello,", name)三...

2019-06-22 23:03:31 183

原创 Python的4个内置数据结构

Python提供了4个内置数据结构(内置指可以直接使用,无需先导入),可以保存任何对象集合,分别是列表、元组、字典和集合。一、列表有序的可变对象集合。1、列表的创建例子list1 = []list2 = ['hello', 123]list3 = [[1,2],['a','b']]2、列表常用方法L.index(v [, begin[, end]])   返回对应元素的...

2019-06-17 14:29:09 220

原创 Windows下Python3.7的安装

1、下载Python3官网地址:www.python.org当前最新版本为Python 3.7.3。Windows下有个6个下载链接Windows x86-64 embeddable zip fileWindows x86-64 executable installerWindows x86-64 web-based installerWindows x86 embeddable ...

2019-06-14 18:31:37 3036

原创 Quartz.NET入门

Quartz.NET是一个开源的作业调度框架。官网地址:https://www.quartz-scheduler.net/目前最新版本为3.0.7,需要.NET Framework 4.5.2及更高版本以上。.NET Framework 4.0及以下可以用版本2.6.2。本文用的是2.6.2版本,下面为入门例子。1、创建2个简单任务Hello1Job.cspublic cla...

2019-06-03 10:55:31 1224

原创 .net连接Oracle

通过网上了解到.net连接Oracle主要有3种方法。(1)System.Data.OracleClient微软的System.Data.OracleClient可以直接引用,但是VS会提示“System.Data.OracleClient.OracleConnection”已过时。(2)Oracle.DataAccess.Client也叫ODP.net,是Oracle提供的数据库访问类库...

2019-06-03 09:40:37 2885

原创 .net4.0使用Dapper操作MySql

准备使用Dapper操作MySql,由于电脑只有vs2010,所以需要Dapper和MySql组件支持.net 4.0。经过一番测试,终于弄出一个DEMO。1、操作MySql需要用MySql.Data.dll。MySql.Data.dll有多个版本,官网关于版本的说明链接如下:https://dev.mysql.com/doc/connector-net/en/connector-net...

2019-06-02 15:06:44 1225

PL/SQL美化器规则文件,用于格式美化sql语句

PL/SQL使用方法: 1、工具--首选项--用户界面--PL/SQL美化器--规则文件,选择.br的规则文件,点确定按钮。 2、点击工具栏的“PL/SQL美化器”,会自动把一段SQL语句重新排版美化。

2022-06-09

Objective-C基础教程(第2版).pdf

Objective-C基础教程(第2版).pdf,中文版。

2015-12-10

开源.NET FTP组件edtFTPnet.dll

开源.NET FTP组件edtFTPnet edtFTPnet官方网站: http://www.enterprisedt.com/products/edtftpnet/ 目前最新版本为2.2.3,下载后在bin目录中找到edtFTPnet.dll,在项目中添加引用。 用法:http://blog.csdn.net/gdjlc/article/details/12054881

2013-09-26

HTML解析工具Html Agility Pack v1.4.6

http://htmlagilitypack.codeplex.com/ This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don't HAVE to understand XPATH nor XSLT to use it, don't worry...). It is a .NET code library that allows you to parse "out of the web" HTML files. The parser is very tolerant with "real world" malformed HTML. The object model is very similar to what proposes System.Xml, but for HTML documents (or streams).

2013-09-18

文件比对工具WinMerge v2.14

http://winmerge.org/ WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle.

2013-09-18

SQLite数据库管理工具SQLiteStudio 2.1.4

http://sqlitestudio.pl/ SQLiteStudio is a SQLite database manager with the following features: Single executable file - no need to install or uninstall. Binary distribution is just the single, ready to use file. Intuitive interface, All SQLite3 and SQLite2 features wrapped within simple GUI, Cross-platform - runs on Windows 9x/2k/XP/2003/Vista/7, Linux, MacOS X, Solaris, FreeBSD and should work on other Unixes (not tested yet). Localizations, currently translated to: English, Polish, Spanish, German, Russian, Japanese, Italian, Dutch, Chinese, Exporting to various formats (SQL statements, CSV, HTML, XML, PDF, JSON, dBase), Importing data from various formats (CSV, dBase, custom text files [regular expressions]), Numerous small additions, like formatting code, history of queries executed in editor windows, on-the-fly syntax checking, and more, UTF-8 support, skinnable (interface can look native for Windows 9x/XP, KDE, GTK, Mac OS X, or draw widgets to fit for other environments, WindowMaker, etc), Configurable colors, fonts and shortcuts. Open source and free - Released under GPLv2 licence.

2013-09-18

.net程序反编译工具ILSpy 2.1

官网:http://ilspy.net/ ILSpy is the open-source .NET assembly browser and decompiler. Development started after Red Gate announced that the free version of .NET Reflector would cease to exist by end of February 2011. ILSpy requires the .NET Framework 4.0.

2013-09-18

读写Excel的组件npoi

官网:http://npoi.codeplex.com/ 介绍: Follow (605) Subscribe This project is the .NET version of POI Java project at http://poi.apache.org/. POI is an open source project which can help you read/write xls, doc, ppt files. It has a wide application. For example, you can use it to a. generate a Excel report without Microsoft Office suite installed on your server and more efficient than call Microsoft Excel ActiveX at background; b. extract text from Office documents to help you implement full-text indexing feature (most of time this feature is used to create search engines). c. extract images from Office documents d. generate Excel sheets that contains formulas

2013-07-26

CnPlugin_1.5.4.rar

备注:原来的模板template.dot在导出word后没有表格的边框,所以稍微修改了一下,覆盖原文件即可,路径:C:\Program Files\PLSQL Developer\PlugIns\CnPlugin\template.dot

2013-04-16

winform制作的精美时钟

参考了好多资料,终于做了一个winform时钟出来,效果及实现代码见: http://blog.csdn.net/gdjlc/article/details/8651485

2013-03-08

winform 为图片添加当月的日历并设为壁纸

winform 为图片添加当月的日历并设为壁纸,可以手动设置壁纸,也可以定时设置壁纸;最主要的特色是在图片上生成当前月的日历信息。

2013-02-28

c#二维码生成与解码

c#实现二维码的生成,解码,通过引用zxing实现

2013-01-17

Winform 通用分页控件

Winform 通用分页控件 转自http://cyq1162.blog.51cto.com/2127378/896084

2012-12-23

从QQ输入法提取出来的截图工具

从QQ五笔输入法提取出来的截图工具,直接就可以使用。。。

2011-06-25

正则表达式测试工具 Regex Tester

Regex Tester 用 C# 编写的用来测试正则表达式的工具,需要.Net Framework 2.0支持。

2011-06-18

Winform文本编辑器

Winform文本编辑器,有一个问题就是生成的HTML不是很好,有"<html><head></head><body>...."...

2010-10-09

winform 版fck文本编辑器

winform 版fck文本编辑器,用起来还不错,不过少了个编辑Html源码功能。

2010-10-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除