- 浏览: 9261 次
- 性别:
- 来自: 北京
最新评论
文章列表
; 脚本由 Inno Setup 脚本向导 生成!
; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档!
#define MyAppName "数据管理系统"
#define MyAppVerName "数据管理系统"
#define MyAppPublisher "北京有限公司"
#define MyAppURL "http://www.com.com.cn/"
#define MyAppExeName "soft.exe"
[Setup]
; 注: AppI ...
Inno Setup做更新包
- 博客分类:
- Inno Setup
When deploying an installation that is an "update" (or "add-on") to an existing installation, you probably want the following criteria to be met:
The update must be installed to the same directory as the original application.
Any new files installed by the update must be removed ...
Java代码
//用JAVA自带的函数
public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}
Java代码
//用正则表达式
public static boolean isNumeric(String str){ ...