public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
Ifactory ifactory =...
分类:
其他好文 时间:
2014-04-30 00:33:52
阅读次数:
504
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
//工厂模式 Ifactory if...
分类:
其他好文 时间:
2014-04-30 00:13:13
阅读次数:
512
1.首先执行onPreExecute方法,进行UI的初步设置2.其次执行doInBackground方法,此时将不在UI中线程中进行了3.然后如果要进行中的数据的话可以通过publishProgress(param)方法进行传递4.再就是onProgressUpdate接收publishProgre...
分类:
其他好文 时间:
2014-04-29 15:19:34
阅读次数:
342
public class Facade { /** * @param args 外观模式 */ One
one; Two two; Three three; public Facade() { one=new One(); two=new Two();
three=new Three()...
分类:
其他好文 时间:
2014-04-29 11:15:47
阅读次数:
238
/**
*
* @param partsPaths 要合成的音频路径数组
* @param unitedFilePath 输入合并结果数组
*/
public void uniteWavFile(String[] partsPaths, String unitedFilePath) {
byte byte1[] = getByte(partsPaths[0]);
...
分类:
编程语言 时间:
2014-04-27 17:39:03
阅读次数:
556