从制造到创造
软件工程师成长之路
posts - 292,  comments - 96,  trackbacks - 0

我的评论

共3页: 上一页 1 2 3 下一页 
re: Merry X'mas CoderDream 2007-12-26 10:47  
后面幾句話深有同感,支持!
re: 跟老刘学Java (一) CoderDream 2007-12-19 16:48  
有点意思,支持一下!
不错,不过应用中一般放在Util包里面!
re: 谁在使用这个端口? CoderDream 2007-12-17 17:31  
不错,已经收藏,感谢分享!
不错,感谢分享,已收藏!
re: Java性能调优工具 CoderDream 2007-12-17 17:23  
非常不错,感谢分享!
re: swing学习--ekit[1] CoderDream 2007-12-17 17:18  
不错,希望共享一下代码!
re: Tomcat常用调优技巧 CoderDream 2007-12-17 16:51  
非常不错,感谢分享,收藏!
re: 航宁4日行 | 后记 CoderDream 2007-12-17 16:10  
已仔细阅读你的“杭宁4日行”,非常不错,感谢分享你的经历!

希望多看到类似的文字!

:-),错别字不少哦!
re: 我的开发工具集(1)-CyberArticle CoderDream 2007-11-29 15:54  
支持正版,¥25元!
用支付寶還是很方便的!
這個軟件不錯,馬上出5.0正式版了!
re: [Original]解析xml的相对路径问题 CoderDream 2007-11-23 17:55  
第一种不错,第二种好像有点问题!
re: 利用XMLBean轻轻松松读写XML CoderDream 2007-11-23 17:09  
建议楼主编辑一下,空行太多!
非常不错,感谢分享!
已收藏!
re: 11.22 找到宝了 Head First Servlet & JSP CoderDream 2007-11-23 14:57  
请共享一下,谢谢!
coderdream(@)gmail(dot)com
Installing the ADT Plugin for Eclipse

If you will be using the Eclipse IDE as your environment for developing Android applications, you can install a custom plugin called Android Development Tools (ADT), which adds integrated support for Android projects and tools. The ADT plugin includes a variety of powerful extensions that make creating, running, and debugging Android applications faster and easier.

If you will not be using the Eclipse IDE, you do not need to download or install the ADT plugin.

To download and install the ADT plugin, set up an Eclipse remote update site as described in the steps below.
Start Eclipse, then select Help > Software Updates > Find and Install....
In the dialog that appears, select Search for new features to install and press Next.
Press New Remote Site.
In the resulting dialog box, enter a name for the remote site (e.g. Android Plugin) and enter this as its URL: https://dl-ssl.google.com/android/eclipse/. Press OK.
You should now see the new site added to the search list (and checked). Press Finish.
In the subsequent Search Results dialog box, select the checkbox for Android Plugin > Eclipse Integration > Android Development Tools and press Next.
Read the license agreement and then select Accept terms of the license agreement, if appropriate. Press Next.
Press Finish.
The ADT plugin is not signed; you can accept the installation anyway by pressing Install All.
Restart Eclipse.
After restart, update your Eclipse preferences to point to the SDK root directory ($SDK_ROOT):
Select Window > Preferences... to open the Preferences panel. (Mac OS X: Eclipse > Preferences)
Select Android from the left panel.
For the SDK Location in the main panel, press Browse... and find the SDK root directory.
Press Apply, then OK
zt=“转贴"

其实学英语的方法有很多种,不一定要背诵。只是觉得该文作者的毅力可嘉,值得学习!
re: 初体验Android的两个小不爽 CoderDream 2007-11-21 10:54  
@zzjian
注意这里是 Android的SDK,也就是“android.jar”所在的目录,而不是Java JDK的目录。
这是我现在遇到的问题,在一个持续的项目过程中,我也会遇到这样的问题,我带的项目总有点虎头蛇尾的味道。这是我意识到的问题,在工作中也是因为我的这个问题对整个项目造成了影响。所以,再这里做游戏,不仅仅是一本书的进度,而是针对我人性弱点的一个挑战。
--------------------------------------

不错,值得借鉴,支持!
非常不错,确实有用,感谢分享!
re: NesQQ 项目控制文件分享 CoderDream 2007-11-08 10:43  
支持分享!
re: 猜猜是什么?(原创) CoderDream 2007-11-07 15:09  
还不错,支持一下!
re: MVC1,MVC2简析 CoderDream 2007-11-06 09:28  
不错,收藏!
re: 编写下面的程序 CoderDream 2007-11-06 09:18  
public class Client {

/**
* <pre>
* a)在main函数中声明一个数组,该数组可以存储B和C类,并用B和C类初始化该数组,
* 并通过循环来调用该数组中每个存储元素的print()方法。
*
* b)在main函数中声明另一个数组,该数组可以存储B和C类,并用B和C类初始化该数组,
* 并通过循环来调用该数组中每个存储元素的show()方法。
* </pre>
*
* @param args
*/
public static void main(String[] args) {
// Array a = new Array[2];

Object[] a = new Object[3];
a[0] = new B();
a[1] = new C();
a[2] = new B();

Object[] b = new Object[3];
b[0] = new B();
b[1] = new C();
b[2] = new B();

A tempa = null;
for (int i = 0; i < a.length; i++) {
tempa = (A) a[i];
tempa.print();
}

IA tempb = null;
for (int j = 0; j < b.length; j++) {
tempb = (IA) b[j];
tempb.show();
}
}

}

abstract class A {
public abstract void print();
}

interface IA {
public abstract void show();
}

class B extends A implements IA {

@Override
public void print() {
System.out.println("Class B");
}

public void show() {
System.out.println("I'm B, implements IA");
}

}
class C extends A implements IA {

public void show() {
System.out.println("I'm C, implements IA");
}

@Override
public void print() {
System.out.println("Class C");
}

}

-----------Console--------------------------
Class B
Class C
Class B
I'm B, implements IA
I'm C, implements IA
I'm B, implements IA

re: 在SQL Server中快速删除重复记录 CoderDream 2007-11-05 09:49  
图片还在你的电脑里,请先上传,否则除了你自己,别人是看不到图片的!
re: 如何学习Hibernate CoderDream 2007-11-02 17:55  
说得很好,支持一下!
re: 14个助你成功的心理定律-----转载 CoderDream 2007-11-01 11:47  
不错,心态很重要!
re: 顺利离职 CoderDream 2007-11-01 11:25  
不知道你现在在武汉还是别的城市?如果在武汉,可以交个朋友!
re: Sun Tech Days 2007(原) CoderDream 2007-11-01 10:26  
期待中!
re: 试用期内常见的劳动纠纷 CoderDream 2007-10-31 21:15  
我也不是这方面的专家,如果元月1日前签合同,用人单位肯定要试用3个月,很多单位都是先不说签合同,而是让你试用3个月再说,所以现在进新公司只能吃亏了!
re: 07年第43周学习总结 CoderDream 2007-10-30 09:00  
不知道你借的两本设计模式书是那两本?GoF的和阎宏的?
以前见过,很早就3.0了,这里还是讲的2.0

应该是转贴的!
re: 多少次重复Eclipse开发的体会! CoderDream 2007-10-25 21:44  
硕士期间没有跟导师一起做项目?
我读硕士的朋友在第二年和第三年都是和导师一起做项目。要不就去企业实习。我们项目组就有3、4个在读硕士生!
re: JavaScript Connect DB CoderDream 2007-10-25 14:39  
這個要在機器上配置數據源吧!

MySQL和DB2也應該類似吧!
re: The Future Of the Software Development CoderDream 2007-10-25 11:51  
在未来,我们可能需要的是一个个高效精干的小型团队,团队成员技艺高潮,富于激情,易于沟通。
=============
说得很好!
re: windows 平台的cvs服务器配置 CoderDream 2007-10-25 11:40  
不错,支持一下!
这个想法不错,就是不知道用Java如何实现,用别的语言如Delphi应该很好实现,可惜Delphi不熟!
re: JSP与JavaBean CoderDream 2007-10-24 17:07  
Paperback: 450 pages
Publisher: Apress (October 22, 2007)
Language: English
ISBN-10: 1590598954
ISBN-13: 978-1590598955


前天出版的书,不可能这么快就有电子版的吧!
re: eclipse自动生成junit代码 flash演示 CoderDream 2007-10-24 13:26  
用CodePro就可以自动生成,而且会生成对应的TestProject!
re: 面试题一道,看看你是否会? CoderDream 2007-10-24 11:59  
如果没有刚刚做过类似功能的人,一天能做出来,估计有5~10年的Java开发经验!

如果谁拿这样的题目来当面试题,而且要写代码(说思路还有可能),肯定是脑子进水了!
re: 刚毕业就没人要? CoderDream 2007-10-21 15:15  
你在哪个城市啊,如果在武汉,我可以帮你推荐一下!
不错,如果图片小一点就更好了!

其实有些图片并不需要全屏,只要某个区域就可以了!
re: 2006年上半年软件设计师上午试题 CoderDream 2007-10-16 19:41  
图片链接有问题,请更正!
为什么6.0 GA早就出来了不用?
re: PowerDesigner 12正式破解版 下载 CoderDream 2007-10-14 10:17  
还不错,不过12.5版早就出来了!
re: 参与第一个外包项目总结 CoderDream 2007-10-14 09:55  
不错,加油!

楼主参加的项目看样子很小,能否介绍一下组织结构,如整个项目从头到尾有多少人参与,具体职责是什么?项目验收前有没有在客户现场测试?
不错,支持一下!
re: 开始→运行→输入的命令集锦 CoderDream 2007-10-11 14:41  
mstsc --远程桌面
共3页: 上一页 1 2 3 下一页 

<2024年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

常用链接

留言簿(9)

我参与的团队

随笔分类(245)

随笔档案(239)

文章分类(3)

文章档案(3)

收藏夹(576)

友情链接

搜索

  •  

积分与排名

  • 积分 - 454170
  • 排名 - 115

最新评论

阅读排行榜

评论排行榜