摘要:
select * from order where pid=1017 and addtime BETWEEN CONCAT( DATE_FORMAT(NOW(),'%Y-%m-%d'),' 00:00:00') ANDCONCAT( DATE_FORMAT(NOW(),'%Y-%m-%d'),' 2 阅读全文
摘要:
package test; public class LCSequence { //求解str1 和 str2 的最长公共子序列 public static int LCS(String str1, String str2){ int[][] c = new int[str1.length() + 阅读全文
摘要:
FileOutputStream fos = new FileOutputStream(entryFile); BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER); // Write to new file. while 阅读全文