自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 资源 (16)
  • 收藏
  • 关注

原创 RPA企业应用的几个关键问题

RPA产品作为通用的软件自动化产品具有广泛的市场适用性,但由于RPA在中国市场还处于起步阶段,目前RPA用户群体主要集中在企业级用户,RPA应用也是小规模、尝试性为主。随着RPA市场关注度持续增加,企业对RPA应用的需求也在不断扩大。可预期的未来,RPA在企业中的应用会向规模化,深度化,智能化,规范化等方向发展。RPA企业应用中所面对的以下问题也将成为下一步RPA产品的重点方向。成本问题:成本问题是所有企业都关注的问题,当RPA应用规模很小的时候,这个问题并不突显,但伴随RPA应用的规模扩大,对于企业来

2020-08-18 11:43:28 353

原创 安装 Electron

【代码】安装 Electron。

2024-03-07 11:54:33 102

原创 C# 搜索海康威视网络摄像头

【代码】C# 搜索海康威视网络摄像头。

2023-09-04 18:02:43 1100

原创 应用TortoiseSVN的SubWCRev管理VisualStudio C#项目编译版本号

1、拷贝Porperties目录下的文件AssemblyInfo.cs生成副本AssemblyInfo.template.cs, 作为版本管理的模板文件。2、修改模板文件中的想要管理的版本号信息。3、设置工程生成前事件命令。

2023-08-27 18:57:21 939

原创 Window系统安装 bee

Window系统下安装运行bee

2022-08-14 20:03:06 433 1

原创 google.golang.org/grpc无法下载问题解决方法

> set GOPROXY=https://mirrors.aliyun.com/goproxy/> set GO111MODULE=on> go get google.golang.org/grpc

2022-03-08 21:39:28 866

原创 PowerShell 取得java安装目录

PS> $path = (Get-Command java).SourcePS> $found = $path -match "^([a-zA-Z]:\\([^\.""/\\[\]:;=]*\\)+)java?\.exe$"PS> echo $matches[1]

2020-06-11 14:55:38 368

原创 PowerShell 获取Java版本号

$out = & java.exe -version 2>&1 $out[0].tostring() -match "^.+""([^""]+)"".*$" $ver = $matches[1]echo $ver

2020-05-05 00:21:04 453

原创 修正ubuntu 下STS启动图标显示问号的方法

原因第一次运行 spring_tool_suite

2014-07-18 15:49:03 4044

原创 Ubuntu 14.04下oracle sqldeveloper只能用管理员运行的解决办法

这是sqldeveloper 的一个bug

2014-07-10 20:20:05 1388 2

原创 Tomcat HTTPS 配置

点击打开链接使用keytool 生成证书Microsoft Windows XP [Version 5.1.2600](C) Copyright 1985-2001 Microsoft Corp.C:\Documents and Settings\ukari>cd \program*The filename, directory name, or volume label

2013-04-21 12:02:49 586

转载 CAP理论与BASE理论

分布式领域CAP理论,Consistency(一致性), 数据一致更新,所有数据变动都是同步的Availability(可用性), 好的响应性能Partition tolerance(分区容错性) 可靠性定理:任何分布式系统只可同时满足二点,没法三者兼顾。忠告:架构师不要将精力浪费在如何设计能满足三者的完美分布式系统,而是应该进行取舍。关系数据库的ACID模型拥有

2011-12-21 11:19:03 2049

原创 恢复linux mint 12的默认主题

选择 菜单>其它>高级设置 弹出 Advanced Settings窗口从窗口左侧列表中选择 Theme 项目。右侧的设置项目中如下设置。   Window theme: Adwaita (default)   Shell theme: Mint-Z   Menus Have Icons: ON   Buttons Have Icons: OFF   Cursor

2011-12-20 20:27:10 2211

转载 web页面返回值

FC2068返回的信息说明100101继续Switching Protocols可能用户访问时使用的是HTTP,而实际上是一个FTP SERVER,该服务器会更改访问协议200成功OK正常读取内容已完毕

2011-10-01 00:44:45 2998

原创 Javascript 日期解析/检查函数

javascript Date 解析 检查

2010-12-06 14:45:00 774

原创 怎样判断一个对象是否为空

function isObjectEmpty(obj){ if(typeof obj != "object"){ throw "parameter type error !!!" } jj for(x in obj){ if(obj[x]) return false; } return true; }

2010-03-09 14:33:00 4185

原创 C#交互绘图的实现方法

使用鼠标屏幕交互绘图是经常在开发中使用,下面以画线为例说明一下实现方法。public partial class Form1 : Form{ Boolean bHaveMouse; Point ptOriginal = new Point(); Point ptLast = new Point(); // Called when the left

2009-01-29 15:28:00 1862

原创 C#中怎样让窗口先获得键盘事件

有的时候我们希望在窗口中能够捕获整个窗口的按键事件。可是如果窗口中已经添加了可激活的控件的话,由于事件被控件截取,因此窗口无法获得键盘事件。该怎么办呢?其实只要把窗口属性 KeyPreview设置为true,就可以让窗口提前处理键盘事件了。这个属性同样适用于VB,VC的开发。以下是MSDN上的例子。 using System.Windows.Forms;us

2009-01-29 07:49:00 7056

原创 Javascript的表格行操作例程

EB开发中经常有以表格行为单位的需求。下面的例程中演示基本的行处理。实现方法:根据数组自动生成表格根据指定的tagName,查询对象的父对象,找到TR对象。// o : 查询对象 // tm : 父对象的tagNamefunction getParentByTagName(o, tm){ while(o = o.parentNode){ if(o.ta

2009-01-28 08:39:00 1368

原创 Javascript 货币格式化输出

<!-- /********************************************************************** IN: decimalNum - the number of decimal places to format the number to bolLeadingZero

2009-01-26 15:10:00 2521

原创 不使用参数获得被点击对象

(1) 首先要获得当前的event对象,IE下实现起来比较的简单,直接使用window.event就可以了。Firefox下是通过第一个参数传递的,这样通过函数的caller.arguments[0]也同样可以得到。(2) 获得发生事件的对象IE下是event对象的srcElement属性,Firefox下是 event对象的target属性。下面是一个实现的例子html>    head>   

2009-01-03 01:45:00 1117

原创 Javascript 游戏中多键同时按下的处理方法

在实时交互程序中尤其是游戏程序中经常要判断的多个键同时按下的状态,并进行处理。比如:同时按下向上和向右的方向键,向右上方移动控制对象,那么程序中是怎样实现的呢。我们知道键盘事件有 onkeydown, onkeypress 和 onkeyup.但事件响应时的 event 中只有一个 keycode,因此单纯的在一个事件中是无法处理多个按键状态的。不过把它们组合起来使用就可以实现了。基本原理如下:(

2008-12-19 23:34:00 2280

原创 Webshpere 6.1下SQLServer 2005 驱动程序设置方法

首先必须是websphere 6.1 fixpack 15 以上的版本。下面的设置方法:1. download the Microsoft SQL Server 2005 JDBC driver version 1.22. unzip it3. copy the sqljdbc jar into [drive]:/IBM/WebSphere/AppServer/lib4. restar

2008-12-16 16:08:00 703

原创 IE和Firefox下模拟按键的实现

IE和Firefox下模拟按键的实现html>    head>        title>Dispatch Event Sampletitle>        meta http-equiv="Content-Type" content="text/html; charset=utf-8" />        script>            function clickABC(el){  

2008-12-08 13:20:00 1626

C#实现搜索海康威视网络摄像头

向239.255.255.250发送组播消息,实现搜索海康威视网络摄像头,C# 工程源代码。

2023-09-04

WPF高级编程

WPF高级编程中文版,PDF扫描文件。 作者:(美国)(Andrade.C.)安德拉德 等 译者:王德才 吴明飞 ,《WPF高级编程》通过使用Visual Studio创建几个示例程序,带领您快速进入应用程序开发。此外,还将介绍XAML—— 创建用户界面的新标记语言。XAML实际上是独立于WPF的一项技术,但在WPF中广泛使用了XAML。

2018-12-19

wxPython.in.Action

The wxPython part of the story actually begins in 1995, with Harri Pasanen and Robin Dunn. Robin, who is one of the co-authors of the book, wrote the following about the history of wxPython, and we decided that it was a story better told in his own voice than paraphrased:.....

2011-07-10

JDict 1.2.5

很方便的,可以通过拼音查找日文单词的小字典。

2010-09-20

Concurrent Programming in ERLANG

The ideas in Erlang are difficult to trace to a single source. Many features of the language have been influenced and improved as a result of comments by our friends and colleagues of the Computer Science Laboratory and we would like to thank them all for their help and advice. In particular we would like to thank Bjarne D¨acker – Head of the Computer Science Laboratory – for his enthusiastic support and encouragement and for the help he has provided in spreading the language.

2009-09-10

Erlang Programming

Erlang is our solution to three problems regarding the development of highly concurrent, distributed “soft real-time systems”: • To be able to develop the software quickly and efficiently • To have systems that are tolerant of software errors and hardware failures • To be able to update the software on the fly, that is, without stopping execution When we “invented” Erlang, we focused on telecommunication systems, but today these requirements are applicable to a large number of applications, and Erlang is used in applications as divergent as distributed databases, financial systems, and chat servers, among others. Recent interest in Erlang has been fueled by its suitability for use on multicore processors. While the world is struggling to find methods to facilitate porting applications to multicore processors, Erlang applications can be ported with virtually no changes....

2009-09-10

Programming Erlang.pdf

Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC. Every precaution was taken in the preparation of this book.

2009-09-01

AJAX设计模式(电子书)

Ajax被定义为“建造能交付功能丰富的、响应能力良好的、具有良好用户操作体验的标准Web技术”。......

2009-02-01

WACS中文用户手册

WACS中文用户手册,对应版本WAS AOS 1.3

2009-02-01

跨frame拖拽对象实现的例程

老外做的一个跨frame拖拽的例程。 挺不错了,有兴趣的朋友可以做个参考。

2008-12-21

Test application for jsCropperUI

jsCropperUI 1.2的sample程序,演示怎么通过键盘入力改变Cropper。

2008-12-15

NewMenu from ExtractMenu

为wumengs修改的 ExtractMenu

2008-12-07

ExtractMenu

在原来菜单的基础上增加了延时关闭等功能。

2008-12-04

HTML 4.0用户手册(英文)

HTML 4.0 became a W3C Recommendation in December of 1997. The new HTML standard provides a number of significant improvements over previous versions of the language while emphasizing the concepts of accessibility and structural markup.

2008-10-31

spring开发参考手册

spring开发参考手册提供了基于spring 2.5.2的完全的功能参考指南。

2008-10-21

struts2 学习大全

最全的struts学习手册。 webwork介绍,入门指南,参考手册,

2008-10-21

空空如也

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

TA关注的人

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