`
文章列表
Forfiles /P "E:\infa_shared\SrcFiles\eVestment\archive" /S /M *.zip /D -15 /C "Cmd /C del @FILE"
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

参考文件: 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 ...

Bat命令学习

转载一个非常好的批处理文章 http://www.cnblogs.com/SunShineYPH/archive/2011/12/13/2285570.html 基础部分: ====================================================================== 一、基础语法:     1.批处理文件是一个“.bat”结尾的文本文件,这个文件的每一行都是一条DOS命令。可以使用任何文本文件编辑工具创建和修改。     2.批处理是一种简单的程序,可以用 if 和 goto 来控制流程,也可以使用 for 循环。     3.批处理的编程能力 ...

PHP 安装

    博客分类:
  • PHP
下载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 ); - ...

财富自由之路1

《理财总动员》 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 ...

nio 编码解码

    博客分类:
  • Java
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 = ...

nio 读写文件

    博客分类:
  • Java
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 ...
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 ...
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 ...
Global site tag (gtag.js) - Google Analytics