- 浏览: 83486 次
- 性别:
- 来自: 重庆
最新评论
-
lihua2008love:
为什么报javax.imageio.IIOException: ...
图片加水印JAVA实现 -
dearhwj:
我整理了一些我常用的Eclipse插件http://www.d ...
eclipse 常用插件 -
javay:
谢谢。
图片加水印JAVA实现 -
hailanc1108:
不错,谢谢啦.
图片加水印JAVA实现 -
elf8848:
我看了, 很好, 但水印不是半透明的
图片加水印JAVA实现
文章列表
Many batch processing problems can be solved with single threaded, single process jobs, so it is always a good idea to properly check if that meets your needs before thinking about more complex implementations. Measure the performance of a realistic job and see if the simplest implementation meets ...
All batch processing can be described in its most simple form as reading in large amounts of data, performing some type of calculation or transformation, and writing the result out. Spring Batch provides three key interfaces to help perform bulk reading and writing: ItemReader,ItemProcessor and Ite ...
Spring Batch 2.1.8 中文文档(一)
Spring Batch 2.1.8 中文文档(二)
Spring Batch 2.1.8 中文文档(三)
Spring Batch 2.1.8 中文文档(四)
Spring Batch 2.1.8 中文文档(五)
Spring Batch 2.1.8 中文文档(六)
创建型模式
1.抽象工厂模式 AbstractFactory
2.建造者模式 Builder 封装一个对象的构建过程,并允许按步骤构造。
3.工厂方法模式 Factory Method
4.原型模式 Prototype
5.单例模式 Singleton
结构型模式
1.适配器模式 Adap ...
http://android.modaco.com/content/htc-legend-legend-modaco-com/307487/24-may-r4-htc-legend-rooting-guide-now-with-1-31-x/
在db2中导入导出表 (1) 导出表结构并且数据是二进制格式:export to filename.ixf of ixf select * from tableName where condition; 导出的数据为二进制格式,不能用文本文本编辑器进行编辑。 (2) 只导出表中的数据,而不导出表结构的语句; export to filename.del of del select * from taablename where conditon;此语句不导出表的格式,并且能用 记事本等asc码编 ...
最近手上没有什么项目,准备开始学习python语言,先建个分类,留个脚印,然后开始我的第二程序人生。
- 2009-12-01 11:41
- 浏览 959
- 评论(0)
因为ubuntu中的系统默认字体变成了ttc
sudo ln -s /usr/share/fonts/truetype/arphic/uming.ttc /usr/share/fonts/truetype/arphic/uming.ttf
- 2009-10-29 17:38
- 浏览 1036
- 评论(0)
加源:代码:
deb http://dl.google.com/linux/deb/ stable main #Google
然后代码:
sudo apt-get updatesudo apt-get install google-chrome-unstable
- 2009-10-28 20:10
- 浏览 865
- 评论(0)
Windows中修改这些信息很容易,Ubuntu中就复杂得多。下面是从网上找到的方法。
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup # 备份配置文件
sudo gedit /etc/samba/smb.conf
找到这行:
workgroup = MSHOME
用以下行替换:
workgroup = new_domain_or_workgroup
保存编辑的文件。
sudo testparm
sudo /etc/init.d/samba ...
- 2009-10-09 17:31
- 浏览 1427
- 评论(0)
台湾
代码:
deb http://tw.archive.ubuntu.com/ubuntu/
karmic main universe restricted multiverse
deb http://tw.archive.ubuntu.com/ubuntu/
karmic-updates universe main multiverse restricted
deb http://tw.archive.ubuntu.com/ubuntu/
karmic-proposed universe main multiverse restricted
deb http://tw. ...
- 2009-10-02 11:04
- 浏览 1842
- 评论(0)
ubuntu9.10使用了grub2(不确定是不是2),与以往不同新版本的grub
的引导配置文件不再是menu.lst而是/boot/grub
/grub
.cfg ,这个文件默认是只读的,因此在修改之前需要先将其改为可写。
root@ptubuntu:/home/ptubuntu#
chmod +w /boot/grub
/grub
.cfg
然后就可以修改了。给其中加上如下内容即可
root@ptubuntu:/home/ptubuntu# vi /boot/grub
/grub
.cfg
添加后内容如下:
### BEG ...
- 2009-10-01 14:50
- 浏览 1568
- 评论(0)
package jp.swtech;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileInputStream;
import java.io.RandomAccessFile;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import ...
- 2009-09-18 18:45
- 浏览 862
- 评论(0)
package cn.com.oneslife;
import java.util.Random;
public class RandomUtil {
static {
StringBuilder sb = new StringBuilder();
for(char c = (char)0x3041; c < (char)0x3094; c++){
sb.append(c);
}
JP_SBC_HIRAGAN = sb.toString();
...
- 2009-09-16 21:48
- 浏览 2799
- 评论(0)