- 浏览: 5517 次
最新评论
文章列表
转载自:http://blog.csdn.net/lifetragedy/article/details/7394910#comments
这个例子我看懂了
package com.shadow.test.annotation;
import com.shadow.test.annotation.ValueBind.fieldType;
public class Student {
private String name = "";
private int age = 0;
private String studentId = " ...
# 合并目录下的所有文件,并以UTF8格式保存到指定文件
function funcCombinFilesInUTF8($fileDir, $destFile)
{
echo '' | out-file -Encoding utf8 -filepath $destFile
$fileList = Get-ChildItem $fileDir
Foreach($file in $fileList)
{
get-content $file.fullname | out-file -append -Encoding utf8 $destFile ...
主要就是调用sqlplus命令,外加windows bat语法
参考:
sqlplus shadow/shadow@oracle @./Test.sql
Test.sql的内容可以如下:
spool ./create_tab.log;
rem 创建表;
@./0.tables.sql;
rem 指标信息;
@./1.base.sql;
spool off;
exit;
这样的好处是便于在Test.sql文件里增加新的脚本文件
【原文链接】http://developer.51cto.com/art/201403/430986.htm
讲的非常好,反正我是看懂了
package com.shadow.util;
/**
* 快速排序的一个实现
* @author shadow
*
*/
public class MyQuickSort {
private static int[] arr = null;
/**
* 找基准点
* @param left
* @param right
*/
private static void quickSort(i ...