在公司呆久了好像觉得什么都不会了
有没有同感??? --------------------编程问答-------------------- 我才入行,也是什么都不会.不会就不给安排事 不安排事 更是什么都不会 --------------------编程问答-------------------- 哎 成天就维护维护 什么都练不到 --------------------编程问答-------------------- 多写代码,不会就自己有时间写个系统,练练呗。--------------------编程问答-------------------- 自己练嘛 ,有时间不要瞎逛就行啦 --------------------编程问答-------------------- 都是粘来复去的 --------------------编程问答-------------------- 本来就不会的 飘过 --------------------编程问答-------------------- 这就叫惰性。。。 --------------------编程问答-------------------- 楼上说的有理。。如果能克服一定能成功的 --------------------编程问答-------------------- 我相信勤学苦练一定有收获得 --------------------编程问答-------------------- 路过。
没工作的时候,就要靠自觉了。 --------------------编程问答-------------------- 就是维护维护
不知道怎么取提高啊 --------------------编程问答-------------------- 天天复制粘贴复制粘贴,ctrl键已经磨白 --------------------编程问答-------------------- 和搂主同感 --------------------编程问答-------------------- 打打酱油总会吧。。 --------------------编程问答-------------------- 打酱油也闷的。。。 --------------------编程问答-------------------- package test;
import java.io.File;
public class testFile {
public static void fileTest(File file) {
File[] files = file.listFiles(); // 获取文件夹下面的所有文件
for (File f : files) {
// 判断是否为文件夹
if (f.isDirectory()) {
System.out.println("----------------" + f.getAbsolutePath()
+ "-------------");
fileTest(f); // 如果是文件夹,重新遍历
} else { // 如果是文件 就打印文件的路径
System.out.println(f.getAbsolutePath());
}
}
}
public static void main(String[] args) {
File file = new File("D:\\测试的路径");
fileTest(file);
}
}
--------------------编程问答-------------------- 为啥这个帖,我没留名??? --------------------编程问答-------------------- me too 公司项目都是维护的多,都是n手的项目,就像被n多人玩过的女人一样,完全打不起精神 --------------------编程问答--------------------
。。。。。 --------------------编程问答-------------------- 首先在你的dao中需要继承org.springframework.orm.ibatis.support.SqlMapClientDaoSupport
然后在代码中调用getSqlMapClientTemplate方法, 覆写SqlMapClientCallback类中的doInSqlMapClient的方法
public void insertTreeCateBatch(final List<TreeCate> TreeCateList) throws DataAccessException{
this.getSqlMapClientTemplate().execute(new SqlMapClientCallback(){
public Object doInSqlMapClient(SqlMapExecutor executor)
throws SQLException {
executor.startBatch();
int batch = 0;
for(TreeCate TreeCate:TreeCateList){
//调用获取sequence的方法。如果没有的话就去掉这行代码。
TreeCate.setTreeCateId(getNextId());
//参数1为:ibatis中需要执行的语句的id
executor.insert("TreeCate_insertTreeCate", TreeCate);
batch++;
//每500条批量提交一次。
if(batch==500){
executor.executeBatch();
batch = 0;
}
}
executor.executeBatch();
return null;
}
});
}
批量插入减少了获取数据库连接池的次数,经过测试可以提高60%到70%的性能 --------------------编程问答-------------------- 首先在你的dao中需要继承org.springframework.orm.ibatis.support.SqlMapClientDaoSupport
然后在代码中调用getSqlMapClientTemplate方法, 覆写SqlMapClientCallback类中的doInSqlMapClient的方法
public void insertTreeCateBatch(final List<TreeCate> TreeCateList) throws DataAccessException{
this.getSqlMapClientTemplate().execute(new SqlMapClientCallback(){
public Object doInSqlMapClient(SqlMapExecutor executor)
throws SQLException {
executor.startBatch();
int batch = 0;
for(TreeCate TreeCate:TreeCateList){
//调用获取sequence的方法。如果没有的话就去掉这行代码。
TreeCate.setTreeCateId(getNextId());
//参数1为:ibatis中需要执行的语句的id
executor.insert("TreeCate_insertTreeCate", TreeCate);
batch++;
//每500条批量提交一次。
if(batch==500){
executor.executeBatch();
batch = 0;
}
}
executor.executeBatch();
return null;
}
});
}
批量插入减少了获取数据库连接池的次数,经过测试可以提高60%到70%的性能, --------------------编程问答-------------------- 东西不练很快就忘光光了......
补充:Java , 非技术区