自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Eclipse和Tomat使用过程的一些配置、错误等的总结记录

背景:公司项目使用jdk1.6、tomcat7、SVN,本文总结使用到现在的一些配置和问题。1、Eclipse项目配置:(1)Windows -> Preferences -> Java/Installed JREs: JRE home: C:\Program Files (x86)\Java\jdk1.6.0_33 JRE name:jdk1.6.0_33(2)底部视图加上Ant W

2017-06-16 11:52:29 484

原创 局域网不能访问本机IIS网站的解决方法

背景:Win7环境下,本机能访问本机IIS网站,但局域网其它电脑访问不了。解决方法:一、如果IIS网站是80端口:点击右下角“电脑”图标 -> 点击“打开网络和共享中心” -> 在弹出界面左下角点击“Windows 防火墙”-> 点击左上角“允许程序或功能通过Windows防火墙”-> 勾选“万维网服务(HTTP)” -> 点击“确定”。 二、如果I

2017-06-16 10:53:42 6537

原创 在同一台电脑部署多个Tomcat服务

背景:公司的项目使用的是jdk1.6,Tomcat7.0,比较旧,打算建一些测试项目用jdk1.8,Tomcat9.0。参考了网上几篇文章http://dong-shuai22-126-com.iteye.com/blog/1763666http://www.cnblogs.com/whylaughing/p/5896268.html个别地方做了整理:1.使用压

2017-06-16 10:00:54 5897 1

原创 Tomcat重启脚本

Tomcat自带只有startup.bat和shutdown.bat实现启动、关闭功能,每次重启要点2次比较麻烦,于是想写一个重启脚本。刚开始在批处理脚本内容简单写了如下:call shutdown.batcall startup.bat试了几次,也把call换成start等,也有问题,因为关闭和启动需求一些时间,有可能shutdown.bat还没执行完,又执行startup.ba

2017-06-16 09:25:00 1041

原创 IE8下面parseInt('08')、parseInt('09')会转成0

原因:IE8下面parseint默认会把“08”、“09”当成八进制,但是又发现不是合法的八进制,最后就抛出了0这个false。解决方法1,加个参数:parseInt(numString, 10)解决方法2,用new Number转成数字 var num = new Number(numString);解决方法3,换成parseFloat:parseFloat(numString)

2017-06-15 14:06:08 1115

转载 Maven 项目生成或者update jdk变为1.5的问题

转自:http://blog.csdn.net/sinat_32873711/article/details/53784618在使用Maven构建项目时,生成的maven项目jdk默认使用的是jdk1.5。在手动修改了jdk之后,update project之后jdk又会变为1.5.或者用eclipse的Maven插件生成的也是1.5对于这种情况

2017-06-10 13:07:13 330

原创 学习使用JUnit4进行单元测试

摘要: 借用http://blog.csdn.net/andycpp/article/details/1327147等文章上面的例子和教程进行学习总结,自己敲了一遍代码,发现里面有些东西,可能版本原因,已经稍微改了,不过原理还是相似的。怎样用JUnit进行一般测试,参数化测试,打包测试。

2017-06-10 01:19:47 449

原创 Chrome浏览器F12开发者工具的几个小技巧总结

1、直接修改页面元素 2、颜色取色器 3、快速查找并定位文件 4、编辑源代码 5、只分析异步请求资源

2017-06-09 10:59:11 37120 1

原创 使用JAX-WS开发WebService

Axis2和CXF是目前流行的Webservice框架,这两个框架都属于重量级框架。相对而言,JAX-WS RI是一个轻量级的框架。开发WebService只需要很简单的几个步骤:写接口和实现->发布->生成客户端(测试或使用)。服务端写接口和实现1、新建一个Maven Web项目,在项目中添加JAX-WS RI引用,pom.xml配置文件如下<project xmln

2017-06-08 15:12:36 421

原创 PL/SQL Developer几个使用小技巧

1、选中sql语句的当前行鼠标连续点击所在行3次。2、记住登陆密码工具 -> 首选项 -> Oracle -> 登录历史,勾选“带口令存储”。3、查看Oracle的tnsnames.ora内容帮助 -> 支持信息 -> TNS名4、PL/SQL美化器使用默认点击工具栏“PL/SQL美化器”后,有些sql语句如decode里面的判断值太多个,则会换成多行显示,

2017-06-07 09:31:32 1611

原创 记一次oracle创建一个新数据库,并导入正式环境数据库备份的dmp包过程

背景:正式环境oracle数据库定时用exp备份一个dmp包,现在打算在一台机器上创建一个新数据库,并导入这个dmp包。1、创建数据库   开始 -> 所有程序 ->  Oracle -> 配置和移植工具  -> Database Configuration Assistant,打开图形化界面,大部分都是默认的下一步操作,有几个地方需要输入:  (1)其中要输入“全局数据库

2017-06-01 12:01:29 3536

原创 用dbms_scheduler创建job

以前一般使用dbms_job来创建job,oracle10g以后推荐使用dbms_scheduler来创建定时任务,dbms_scheduler功能更为强大。一个创建job的例子:begin sys.dbms_scheduler.create_job(job_name => 'CMDEV.每天执行某件事',

2017-06-01 10:05:11 850

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关注的人

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