- 浏览: 207349 次
- 性别:
- 来自: 深圳
最新评论
-
一尾金鱼:
可以作为查询手册了,页面布局也好~
JSP EL -
darkgost:
您好,我按照你的方法,在Service1.cs中添加如下代码: ...
C#Windows 服务制作安装删除. 用户注销后,程序继续运行
文章列表
一个好用的命令--定期删除旧文件
- 博客分类:
- Windows
Forfiles /P "E:\infa_shared\SrcFiles\eVestment\archive" /S /M *.zip /D -15 /C "Cmd /C del @FILE"
用批处理下载并解压文件
- 博客分类:
- Windows
1. 创建一个bat 文件 FTPAndZip.bat
echo download files from ftp
ftp -n -s:E:\infa_shared\SrcFiles\eVestment\ftpscript.txt
echo unzip file
E:\infa_shared\SrcFiles\eVestment\unzip.exe -o E:\infa_shared\SrcFiles\eVestment\data\EAHF.zip -d E:\infa_shared\SrcFiles\eVestment\data\EAHF\
if %errorlevel% ...
Maven 生成 archetype
- 博客分类:
- Maven
参考文件:
Creating an archetype from an existing project:
http://maven.apache.org/archetype/maven-archetype-plugin/advanced-usage.html
Create an archetype from a multi-module project:
http://maven.apache.org/archetype/maven-archetype-plugin/examples/create-multi-module-project.html
Steps:
1.进入项目目录(po ...
转载一个非常好的批处理文章
http://www.cnblogs.com/SunShineYPH/archive/2011/12/13/2285570.html
基础部分:
======================================================================
一、基础语法:
1.批处理文件是一个“.bat”结尾的文本文件,这个文件的每一行都是一条DOS命令。可以使用任何文本文件编辑工具创建和修改。
2.批处理是一种简单的程序,可以用 if 和 goto 来控制流程,也可以使用 for 循环。
3.批处理的编程能力 ...
下载PHP
http://windows.php.net/download/ 由于在XP系统下运行Apache, 所以我选择了版本VC9 x86 Thread Safe
注:
1.使用IIS运行PHP 可选择 NON Thread Safe 版本, 使用Apache 要选择 Thread Safe 版本。
2.在Win XP运行必须选择VC9, 并且可能要安装Microsoft Visual C++ 2008 SP1 Redistributable Package <http://www.microsoft.com/zh-cn/download/confirmation.aspx?i ...
营销--意见领袖营销和交叉促销术
- 博客分类:
- 理财
朋友:“兄弟,我开了咖啡馆,投资了不少钱,可跟我想象的不一样啊,而且这几天还要买花瓶、壁画等等,又要花一大笔钱啊,一个花瓶就要1000元啊”
我:“买这些还需要钱吗?”
朋友:“不需要钱?难到抢吗 ...
外汇主要经济指标解读与公布时间
- 博客分类:
- 理财
由于美圆在外汇市场中的地位,以及绝大多数的外汇交易都是以美圆为中心的交易等原因,美国的经济数据在汇市中最为引人注目。以下是一些重要经济指标的理论上的观察方法和结论,但在实际运用中情况会复杂得多:
...
sql 中涉及到两个表CurrentData.dbo.EVUniverse and CurrentData.dbo.Staging_EVUniverse, 从前表到后表操作
;--INSERT NEW RECORDS
INSERT INTO CurrentData.dbo.EVUniverse
SELECT *
FROM CurrentData.dbo.Staging_EVUniverse s
WHERE NOT EXISTS (SELECT 1 FROM CurrentData.dbo.EVUniverse t
WHERE s.UniverseID = t.UniverseID
);
- ...
《理财总动员》
http://bbs.tianya.cn/post-develop-1397046-1.shtml
《福利密码》
http://www.yi-see.com/read_202975_11889.html
《潜流涌动:中国HOLD住了》
《财经巴士—和普通人聊聊经济与理财常识》
http://bbs.tianya.cn/post-develop-1131608-1.shtml
1.关注美国经济,月初发布的三大核心数据
非农就业、登记失业率和消费者信心指数
2.“三低一高法”,可以适用于任何一个你选择为观察对象的经济体,而且肯定能达到至少80%的准确度。
所谓“三低”就是选 ...
If the link condition evaluates to True, the Integration Service runs the next task in the workflow. The Integration Service does not run the next task in the workflow if the link condition evaluates to False. You can also use pre-defined or user-defined workflow variables in the link condition.
1 ...
package fanshe;
public class Person {
private int age;
private String name;
static {
System.out.println("initial static block...");
}
}
package fanshe;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public cla ...
package CharSet1;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
public class MyMain {
public static void main(String[] args) throws Exception{
Charset charset = ...
package FSOperation;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;
pub ...
Java反射三 动态创建数组
- 博客分类:
- Java
package fanshe;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Mymain {
public static void main(String[] args) throws Exception{
Mymain.createArray();
}
public static void createArray(){
Object array = Array.newInst ...
Java反射一 动态修改类的属性
- 博客分类:
- Java
Person.java
package fanshe;
public class Person {
private int age;
private String name;
private String info(){
return "My name is "+ name +", I'm "+age+" years old.";
}
private void sayHellow(String word){
System.out.println(word);
}
}
Mymai ...