<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
  <channel>
    <title>finaleden</title>
    <description></description>
    <link>http://finaleden.javaeye.com</link>
    <language>UTF-8</language>
    <copyright>Copyright 2003-2008, JavaEye.com</copyright>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>JavaEye - 做最棒的软件开发交流社区</generator>
      <item>
        <title>[原创]截屏，不含windows任务条</title>
        <author>finaleden</author>
        <description>
          <![CDATA[
          <br/>
          作者: <a href="http://finaleden.javaeye.com">finaleden</a>&nbsp;
          链接：<a href="http://finaleden.javaeye.com/blog/164234" style="color:red;">http://finaleden.javaeye.com/blog/164234</a>&nbsp;
          发表时间: 2008年02月22日
          <br/><br/>
          声明：本文系JavaEye网站发布的原创博客文章，未经作者书面许可，严禁任何网站转载本文，否则必将追究法律责任！
          <br/><br/>
          参考了网上的一些资料。<br /><pre name="code" class="java">
package test;

import java.awt.AWTException;
import java.awt.Dimension;
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsEnvironment;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;

/**
 * 截屏，不含任务条，暂无实用效果，以后改进。
 * @author liwenliang
 */
public class TestImage {
	public static void main(String[] args) {
		testImage();
	}
	
	public static void testImage() {
		try {
			// 获取屏幕的大小 
			Toolkit toolkit = Toolkit.getDefaultToolkit();
			Dimension screenSize = toolkit.getScreenSize();
			// 获取屏幕特征
			GraphicsConfiguration gc = 
				GraphicsEnvironment.getLocalGraphicsEnvironment()
								   .getDefaultScreenDevice()
								   .getDefaultConfiguration();
			// 获得屏幕的 insets
			Insets screenInsets = toolkit.getScreenInsets(gc); 
			Rectangle desktopBounds = new Rectangle( 
					screenInsets.left, screenInsets.top, 
	                screenSize.width - screenInsets.left - screenInsets.right, 
	                screenSize.height - screenInsets.top - screenInsets.bottom);
			BufferedImage bImage = new Robot().createScreenCapture(
					new Rectangle(desktopBounds));
			// 文件保存地址,jpg格式也可以,其他还没验证
			String name = "e:\\image.png";
			File f = new File(name);
			ImageIO.write(bImage, "png", f);
			System.out.println("copy screen ok..........");
		} catch (AWTException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
</pre>
          <br/><br/>
          <span style="color:red;">
            <a href="http://finaleden.javaeye.com/blog/164234#comments" style="color:red;">已有 <strong>0</strong> 人发表留言，猛击-&gt;&gt;<strong>这里</strong>&lt;&lt;-参与讨论</a>
          </span>
          <br/><br/><br/>
          <span style="color:#E28822;">JavaEye推荐</span>
          <br/>
          <ul class='adverts'><li><a href='/adverts/41' target='_blank'><span style="color:red;font-weight:bold;">北京: 千橡集团暨校内网诚聘软件研发工程师</span></a></li><li><a href='/adverts/42' target='_blank'><span style="color:red;font-weight:bold;">搜狐网站诚聘Java、PHP和C++工程师</span></a></li></ul>
          <br/><br/><br/>
          ]]>
        </description>
        <pubDate>Fri, 22 Feb 2008 15:22:53 +0800</pubDate>
        <link>http://finaleden.javaeye.com/blog/164234</link>
        <guid>http://finaleden.javaeye.com/blog/164234</guid>
      </item>
      <item>
        <title>利用POI向EXCEL写入日期数据时的问题</title>
        <author>finaleden</author>
        <description>
          <![CDATA[
          <br/>
          作者: <a href="http://finaleden.javaeye.com">finaleden</a>&nbsp;
          链接：<a href="http://finaleden.javaeye.com/blog/143137" style="color:red;">http://finaleden.javaeye.com/blog/143137</a>&nbsp;
          发表时间: 2007年11月23日
          <br/><br/>
          声明：本文系JavaEye网站发布的原创博客文章，未经作者书面许可，严禁任何网站转载本文，否则必将追究法律责任！
          <br/><br/>
          <table cellspacing="0" style="HEIGHT: 100%">
    <tbody>
        <tr>
            <td class="floor"><span>发表于：<var csdnid="topicPostDate">2007-10-12 11:50:03</var></span> <var>楼主</var></td>
        </tr>
        <tr>
            <td csdnid="Topic_Body" class="content">在网上看了很多资料都是讨论如何利用POI读EXCEL的，但是没看到几个用POI向EXCEL写入日期数据的贴子，好不容易使通了，但是碰到了两个新问题，希望各位大侠指点： <br />
            <br />
            我向EXCEL写日期数据思路是先用JAVA函数把日期转换成相对1900-1-1&nbsp;0:00的数字，然后利用POI自定义EXCEL单元格格式为YYYY-MM-DD&nbsp;HH:MM型，我测试了一下程序，这个方法基本上是行的通的，但是其中有两点问题： <br />
            <br />
            1.JAVA日期转换函数的参考日期是1900-1-1&nbsp;0:00而EXCEL的参考日期是1900-1-0&nbsp;0:00，因此算出来的数值参了一，这是好处理的，但是EXCEL跟JAVA日期转换函数间的偏差却不只这一处，不知道EXCEL不知道还在哪里少算了一天的时间，大家告诉我为什么会出现这种好吗？我就怕是处理闰年的依据不一样，这样可能会导致后面的日期时间里再出现偏差。 <br />
            2.JAVA日期转换函数对12点的识别有问题，会识别成0点，如：1994-01-01&nbsp;12:00会识别成Sat&nbsp;Jan&nbsp;01&nbsp;00:00:00&nbsp;CST&nbsp;1994大家有碰到这种情况吗? <br />
            <br />
            我的代码是这样的: <br />
            &lt;%@&nbsp;page&nbsp;contentType=&quot;text/html;charset=gb2312&quot;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import=&quot;java.io.*,java.lang.*,org.apache.poi.hssf.usermodel.*,org.apache.poi.hssf.usermodel.HSSFCell,org.apache.poi.hssf.usermodel.HSSFCellStyle,org.apache.poi.hssf.usermodel.HSSFDataFormat,org.apache.poi.hssf.usermodel.HSSFFont,org.apache.poi.hssf.usermodel.HSSFRow,org.apache.poi.hssf.usermodel.HSSFSheet,org.apache.poi.hssf.usermodel.HSSFWorkbook,org.apache.poi.hssf.usermodel.HSSFRow,org.apache.poi.hssf.util.HSSFColor&quot;&nbsp;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import=&quot;zs_bx.DataQuery&quot;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import=&quot;java.sql.*&quot;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import&nbsp;=&quot;java.util.Date&quot;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import&nbsp;=&quot;java.util.Locale&quot;% &gt; <br />
            &lt;%@&nbsp;page&nbsp;import&nbsp;=&quot;java.text.*&quot;% &gt; <br />
            &lt;% <br />
            HSSFWorkbook&nbsp;wb&nbsp;=&nbsp;new&nbsp;HSSFWorkbook(); <br />
            HSSFSheet&nbsp;sheet&nbsp;=&nbsp;wb.createSheet(); <br />
            HSSFCellStyle&nbsp;dateCellStyle=wb.createCellStyle(); <br />
            short&nbsp;df=wb.createDataFormat().getFormat(&quot;yyyy-mm-dd&nbsp;hh:mm&quot;);&nbsp; <br />
            dateCellStyle.setDataFormat(df); <br />
            <br />
            DateFormat&nbsp;format; <br />
            SimpleDateFormat&nbsp;datetemp&nbsp;=&nbsp;new&nbsp;SimpleDateFormat(&quot;yyyy-MM-dd&nbsp;hh:mm&quot;); <br />
            SimpleDateFormat&nbsp;datetemp_test=new&nbsp;SimpleDateFormat(&quot;yyyy-MM-dd&quot;); <br />
            Date&nbsp;temp1&nbsp;=&nbsp;datetemp.parse(&quot;1900-01-01&nbsp;00:00&quot;); <br />
            Date&nbsp;temp2=datetemp.parse(&quot;1994-01-01&nbsp;12:00&quot;); <br />
            double&nbsp;numOfDateTime=0; <br />
            numOfDateTime=temp2.getTime()-temp1.getTime(); <br />
            numOfDateTime=numOfDateTime/24/60/60/1000+1; <br />
            <br />
            HSSFRow&nbsp;row; <br />
            HSSFCell&nbsp;cell; <br />
            row&nbsp;=&nbsp;sheet.createRow(0); <br />
            <br />
            cell&nbsp;=&nbsp;row.createCell((short)0); <br />
            cell.setCellType(HSSFCell.CELL_TYPE_NUMERIC); <br />
            cell.setCellValue(numOfDateTime);&nbsp; <br />
            cell.setCellStyle(dateCellStyle); <br />
            <br />
            .... <br />
            .... </td>
        </tr>
        <tr>
            <td csdnid="topicModifyInfo" class="modify">&nbsp;</td>
        </tr>
        <tr>
            <td csdnid="topicRelatedLinks" class="file">&nbsp;</td>
        </tr>
        <tr>
            <td class="function"><span><label>问题点数：</label><var csdnid="point" id="point">10</var>&nbsp;<label>回复次数：<var csdnid="replyCount">5</var></label></span> </td>
        </tr>
    </tbody>
</table>
<div class="ad topicad01"></div>
<table csdnid="reply_45628588" class="item reply" cellspacing="1">
    <tbody>
        <tr>
            <td class="main">
            <table cellspacing="0" style="HEIGHT: 100%">
                <tbody>
                    <tr>
                        <td class="floor"><span>发表于：<var csdnid="Reply_Date">2007-10-12 12:38:21</var></span><var csdnid="Reply_Layer">1</var>楼&nbsp;得分:<var csdnid="Reply_Point">0</var></td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_Body" class="content">可以试试先将日期以字符形式写入单元格再设定单元格格式？</td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_ModifyInfo">&nbsp;</td>
                    </tr>
                    <tr>
                        <td class="function"><!-- <span>预留的文字链广告位</span> //--></td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>
<table csdnid="reply_45630844" class="item reply" cellspacing="1">
    <tbody>
        <tr>
            <td class="main">
            <table cellspacing="0" style="HEIGHT: 100%">
                <tbody>
                    <tr>
                        <td class="floor"><span>发表于：<var csdnid="Reply_Date">2007-10-12 14:40:02</var></span><var csdnid="Reply_Layer">2</var>楼&nbsp;得分:<var csdnid="Reply_Point">0</var></td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_Body" class="content">这样不行的，这样做的话输进去了的数据就是字符型数据了，我之所以这么费周章用上面的方法去做就是应该这个方法不行啊，因为我在应用上必须让excel把日期能识别成日期，这样在画图表的时候才会根据时间画出正确的曲线 <br />
                        <br />
                        不过还是谢谢噢</td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_ModifyInfo">&nbsp;</td>
                    </tr>
                    <tr>
                        <td class="function"><!-- <span>预留的文字链广告位</span> //--></td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>
<table csdnid="reply_45633218" class="item reply" cellspacing="1">
    <tbody>
        <tr>
            <td class="main">
            <table cellspacing="0" style="HEIGHT: 100%">
                <tbody>
                    <tr>
                        <td class="floor"><span>发表于：<var csdnid="Reply_Date">2007-10-12 16:35:50</var></span><var csdnid="Reply_Layer">3</var>楼&nbsp;得分:<var csdnid="Reply_Point">0</var></td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_Body" class="content">看了JDK的API终于知道为什么出现这个问题了 <br />
                        <br />
                        SimpleDateFormat&nbsp;datetemp&nbsp;=&nbsp;new&nbsp;SimpleDateFormat(&quot;yyyy-MM-dd&nbsp;hh:mm&quot;); <br />
                        <br />
                        在日期格式的定义中格式符是区分大小写的，H代表24小时(0~23),h代表12小时(1~12),所以之前我的12老是被认成是0时了(之前我在里面写的大小写是随意的)，上面那句子正确的写法是 <br />
                        <br />
                        SimpleDateFormat&nbsp;datetemp&nbsp;=&nbsp;new&nbsp;SimpleDateFormat(&quot;yyyy-MM-DD&nbsp;HH:mm&quot;); <br />
                        <br />
                        谢谢1楼的大哥了：）</td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_ModifyInfo">&nbsp;</td>
                    </tr>
                    <tr>
                        <td class="function"><!-- <span>预留的文字链广告位</span> //--></td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>
<table csdnid="reply_45634035" class="item reply" cellspacing="1">
    <tbody>
        <tr>
            <td class="main">
            <table cellspacing="0" style="HEIGHT: 100%">
                <tbody>
                    <tr>
                        <td class="floor"><span>发表于：<var csdnid="Reply_Date">2007-10-12 17:08:41</var></span><var csdnid="Reply_Layer">4</var>楼&nbsp;得分:<var csdnid="Reply_Point">0</var></td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_Body" class="content">对于第一个问题也查出原因了，这个问题挺有普遍意义的，实际上通常的所有应用里JAVA的Date.getTime()函数获得的时间都会比EXCEL里大，其原因如下： <br />
                        <br />
                        1.EXCEL的时间参考是1900-1-0&nbsp;0:00&nbsp;为1,而java的时间参考是以1900-1-1&nbsp;0:00&nbsp;为0,因此java的时间转换出的数值比excel的少1,所以这里要加1; <br />
                        2.由于EXCEL误以为1900年是闰年(真正的判断法则是：能被4或400整除,但不能被100整除的年份为闰年)，所以在这个问题上EXCEL又把天数算多了一天，因此，用JAVA算出来的时间要转化成EXCEL的话要再加多一天，因此是加2 <br />
                        <br />
                        对于闰年的判断我不知道EXCEL是不是只错了1900年,反正从1900到2007EXCEL就错了一回，其它的闰年都算对了，希望这个发现能对各位大侠有帮助吧^_^</td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_ModifyInfo">&nbsp;</td>
                    </tr>
                    <tr>
                        <td class="function"><!-- <span>预留的文字链广告位</span> //--></td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>
<table csdnid="reply_45634194" class="item reply" cellspacing="1">
    <tbody>
        <tr>
            <td class="main">
            <table cellspacing="0" style="HEIGHT: 100%">
                <tbody>
                    <tr>
                        <td class="floor"><span>发表于：<var csdnid="Reply_Date">2007-10-12 17:14:39</var></span><var csdnid="Reply_Layer">5</var>楼&nbsp;得分:<var csdnid="Reply_Point">0</var></td>
                    </tr>
                    <tr>
                        <td csdnid="Reply_Body" class="content">向excel中写入日期数据其实就是写入一个数值。 <br />
                        计算出来添进去，把格式设成日期型就OK了</td>
                    </tr>
                </tbody>
            </table>
            </td>
        </tr>
    </tbody>
</table>
          <br/><br/>
          <span style="color:red;">
            <a href="http://finaleden.javaeye.com/blog/143137#comments" style="color:red;">已有 <strong>0</strong> 人发表留言，猛击-&gt;&gt;<strong>这里</strong>&lt;&lt;-参与讨论</a>
          </span>
          <br/><br/><br/>
          <span style="color:#E28822;">JavaEye推荐</span>
          <br/>
          <ul class='adverts'><li><a href='/adverts/41' target='_blank'><span style="color:red;font-weight:bold;">北京: 千橡集团暨校内网诚聘软件研发工程师</span></a></li><li><a href='/adverts/42' target='_blank'><span style="color:red;font-weight:bold;">搜狐网站诚聘Java、PHP和C++工程师</span></a></li></ul>
          <br/><br/><br/>
          ]]>
        </description>
        <pubDate>Fri, 23 Nov 2007 19:17:04 +0800</pubDate>
        <link>http://finaleden.javaeye.com/blog/143137</link>
        <guid>http://finaleden.javaeye.com/blog/143137</guid>
      </item>
      <item>
        <title>上传文件的奇怪问题</title>
        <author>finaleden</author>
        <description>
          <![CDATA[
          <br/>
          作者: <a href="http://finaleden.javaeye.com">finaleden</a>&nbsp;
          链接：<a href="http://finaleden.javaeye.com/blog/137395" style="color:red;">http://finaleden.javaeye.com/blog/137395</a>&nbsp;
          发表时间: 2007年11月01日
          <br/><br/>
          声明：本文系JavaEye网站发布的原创博客文章，未经作者书面许可，严禁任何网站转载本文，否则必将追究法律责任！
          <br/><br/>
          <p><font size="3">异常信息：<font face="Arial"><font face="Arial">&nbsp;java.lang.IllegalArgumentException: Cannot invoke com.eplugger.pub.model.BaseModel.setFormFile - argument type mismatch</font></font></font></p>
<pre class="overflow"><font size="3">解决方案：</font></pre>
<pre class="overflow"><font size="3">必须在html:form 中加上如下 enctype=&quot;multipart/form-data&quot;</font></pre>
          <br/><br/>
          <span style="color:red;">
            <a href="http://finaleden.javaeye.com/blog/137395#comments" style="color:red;">已有 <strong>0</strong> 人发表留言，猛击-&gt;&gt;<strong>这里</strong>&lt;&lt;-参与讨论</a>
          </span>
          <br/><br/><br/>
          <span style="color:#E28822;">JavaEye推荐</span>
          <br/>
          <ul class='adverts'><li><a href='/adverts/41' target='_blank'><span style="color:red;font-weight:bold;">北京: 千橡集团暨校内网诚聘软件研发工程师</span></a></li><li><a href='/adverts/42' target='_blank'><span style="color:red;font-weight:bold;">搜狐网站诚聘Java、PHP和C++工程师</span></a></li></ul>
          <br/><br/><br/>
          ]]>
        </description>
        <pubDate>Thu, 01 Nov 2007 17:07:04 +0800</pubDate>
        <link>http://finaleden.javaeye.com/blog/137395</link>
        <guid>http://finaleden.javaeye.com/blog/137395</guid>
      </item>
      <item>
        <title>让人迷惑的命名</title>
        <author>finaleden</author>
        <description>
          <![CDATA[
          <br/>
          作者: <a href="http://finaleden.javaeye.com">finaleden</a>&nbsp;
          链接：<a href="http://finaleden.javaeye.com/blog/135560" style="color:red;">http://finaleden.javaeye.com/blog/135560</a>&nbsp;
          发表时间: 2007年10月25日
          <br/><br/>
          声明：本文系JavaEye网站发布的原创博客文章，未经作者书面许可，严禁任何网站转载本文，否则必将追究法律责任！
          <br/><br/>
          <p>&nbsp;让人迷惑的命名：JDK1.5中的String的两个方法replace和replaceAll。从名字你绝对猜不到replaceAll的真正用途。</p>
<p>
<table cellspacing="1" border="1" summary="" width="676" cellpadding="1" style="WIDTH: 676px; HEIGHT: 141px">
    <tbody>
        <tr>
            <td><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html" title="java.lang 中的类">String</a></td>
            <td><code><strong><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html#replace(char, char)">replace</a></strong>(char&nbsp;oldChar, char&nbsp;newChar)</code> <br />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;返回一个新的字符串，它是通过用 <code>newChar</code> 替换此字符串中出现的所有 <code>oldChar</code> 而生成的。</td>
        </tr>
        <tr>
            <td><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html" title="java.lang 中的类">String</a></td>
            <td><code><strong><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html#replace(java.lang.CharSequence, java.lang.CharSequence)">replace</a></strong>(<a href="file:///F:/downloads/html/zh_CN/api/java/lang/CharSequence.html" title="java.lang 中的接口">CharSequence</a>&nbsp;target, <a href="file:///F:/downloads/html/zh_CN/api/java/lang/CharSequence.html" title="java.lang 中的接口">CharSequence</a>&nbsp;replacement)</code> <br />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;使用指定的字面值替换序列替换此字符串匹配字面值目标序列的每个子字符串。</td>
        </tr>
        <tr>
            <td><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html" title="java.lang 中的类">String</a></td>
            <td><code><strong><a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html#replaceAll(java.lang.String, java.lang.String)">replaceAll</a></strong>(<a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html" title="java.lang 中的类">String</a>&nbsp;regex, <a href="file:///F:/downloads/html/zh_CN/api/java/lang/String.html" title="java.lang 中的类">String</a>&nbsp;replacement)</code> <br />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;使用给定的 replacement 字符串替换此字符串匹配给定的<a href="file:///F:/downloads/html/zh_CN/api/java/util/regex/Pattern.html#sum">正则表达式</a>的每个子字符串。</td>
        </tr>
    </tbody>
</table>
</p>
          <br/><br/>
          <span style="color:red;">
            <a href="http://finaleden.javaeye.com/blog/135560#comments" style="color:red;">已有 <strong>0</strong> 人发表留言，猛击-&gt;&gt;<strong>这里</strong>&lt;&lt;-参与讨论</a>
          </span>
          <br/><br/><br/>
          <span style="color:#E28822;">JavaEye推荐</span>
          <br/>
          <ul class='adverts'><li><a href='/adverts/41' target='_blank'><span style="color:red;font-weight:bold;">北京: 千橡集团暨校内网诚聘软件研发工程师</span></a></li><li><a href='/adverts/42' target='_blank'><span style="color:red;font-weight:bold;">搜狐网站诚聘Java、PHP和C++工程师</span></a></li></ul>
          <br/><br/><br/>
          ]]>
        </description>
        <pubDate>Thu, 25 Oct 2007 21:55:39 +0800</pubDate>
        <link>http://finaleden.javaeye.com/blog/135560</link>
        <guid>http://finaleden.javaeye.com/blog/135560</guid>
      </item>
      <item>
        <title>为您提供9条最为重要的Web职业计划指南</title>
        <author>finaleden</author>
        <description>
          <![CDATA[
          <br/>
          作者: <a href="http://finaleden.javaeye.com">finaleden</a>&nbsp;
          链接：<a href="http://finaleden.javaeye.com/blog/129452" style="color:red;">http://finaleden.javaeye.com/blog/129452</a>&nbsp;
          发表时间: 2007年10月07日
          <br/><br/>
          声明：本文系JavaEye网站发布的原创博客文章，未经作者书面许可，严禁任何网站转载本文，否则必将追究法律责任！
          <br/><br/>
          <div align="left"><font color="#494949">转载自：<font face="Arial"><a href="http://blog.sina.com.cn/s/blog_3f554c3f010007g9.html">http://blog.sina.com.cn/s/blog_3f554c3f010007g9.html</a></font></font></div>
<div align="left"><font color="#494949">Your 9 most important career planning tips<br />
为您提供9条最为重要的Web职业计划指南。</font></div>
<div align="left"><font color="#0000ff"><strong>1. Never Stop Learning<br />
1. 永远不要停止学习。</strong></font></div>
<div align="left"><font color="#494949">Life-long learning is your keyword.<br />
&ldquo;学习一生&rdquo;应该作为你的座右铭。</font></div>
<div align="left"><font color="#494949">The world is constantly changing, and everybody is looking for new ways of doing business.</font></div>
<div align="left"><font color="#494949">世界不断地在改变，每个人都在寻找新的商务方式。</font></div>
<div align="left"><font color="#494949">If you have decided that your current skills are good enough, you have also decided that your current job is good enough.</font></div>
<div align="left"><font color="#494949">如果你认为你现在的技能已经足够棒了，那么就意味着你现在从事的职业也足够好了。</font></div>
<div align="left"><font color="#494949">But if you want a career in the future, you should add regular updates to your skills and knowledge.</font></div>
<div align="left"><font color="#494949">但是，如果你想在将来也能够谋职，那么你需要不断更新和扩充你的技能知识。</font></div>
<div align="left"><strong><font color="#0000ff">2. Ask, Listen And Learn<br />
2. 问、听、学</font></strong></div>
<div align="left"><font color="#494949">A good listener can learn a lot.<br />
做一个好的聆听者可以学到很多知识。</font></div>
<div align="left"><font color="#494949">Listen to your co-workers, your boss, and your superiors. You can learn a lot from their experience.</font></div>
<div align="left"><font color="#494949">学会聆听你的同事、老板以及上司。你可以学到很多他们的经验。</font></div>
<div align="left"><font color="#494949">Ask about issues that interest you, and listen to what they say. Let them tell you about how things work, and what you could have done better.</font></div>
<div align="left"><font color="#494949">询问那些你感兴趣的话题，然后继续听他们讲。让他们告诉你该如何去运作这些事情，如何让你做的更好。</font></div>
<div align="left"><font color="#494949">Most people will love to be your free tutor.</font></div>
<div align="left"><font color="#494949">大多数人都会愿意成为你免费的导师。</font></div>
<div align="left"><strong><font color="#0000ff">3. Fulfill Your Current Job</font></strong></div>
<div align="left"><strong><font color="#0000ff">3. 胜任你当前的工作</font></strong></div>
<div align="left"><font color="#494949">Your current job might be best place to start your career.</font></div>
<div align="left"><font color="#494949">你当前从事的工作可能就是你美好职业的开始。</font></div>
<div align="left"><font color="#494949">It is often very little that separates successful people from the average. But nothing comes free.</font></div>
<div align="left"><font color="#494949">成功的只有少数，大部分人都是碌碌无为的。但是，天下没有免费的午餐。</font></div>
<div align="left"><font color="#494949">If you do your job well and fulfill your responsibilities, this is often the best way to start a new career.</font></div>
<div align="left"><font color="#494949">如果你能够很好地胜任你的工作，承担起你的责任，那么，这就是你事业发展的一个最好契机。</font></div>
<div align="left"><font color="#494949">Talk to your supervisor about things you can do. Suggest improvements. Offer your help when help is needed. In return ask for help to build a better career. It is often possible - right inside your own organization - especially if you have proved to be a valued employee.</font></div>
<div align="left"><font color="#494949">告诉你的上司，你能胜任哪些工作。建议持续地改进。当别人需要帮助的时候，伸一下援助之手。作为回报，你也会得到别人的帮助。这在你的组织里是完全可以实现的。特别是你变成一个最具价值雇员时。</font></div>
<div align="left"><strong><font color="#0000ff">4. Build Your Network</font></strong></div>
<div align="left"><strong><font color="#0000ff">4. 创建你的网络</font></strong></div>
<div align="left"><font color="#494949">Your next career step might arise from your contact network.</font></div>
<div align="left"><font color="#494949">你的下一个职业可能就是从你的联系网开始的。</font></div>
<div align="left"><font color="#494949">Did you know that more than 50% of all jobs are obtained from contact networks?</font></div>
<div align="left"><font color="#494949">你知道，大概50%的职业都和联系网有关吗？</font></div>
<div align="left"><font color="#494949">If you have a good contact network, it&nbsp; is also a good place to discover future careers, to explore new trends, and to learn about new&nbsp; opportunities.</font></div>
<div align="left"><font color="#494949">如果你有一个好的联系网，那么对于发掘将来的职业也是有很大的好处的。为了开发新的趋势，学习新的机会。</font></div>
<div align="left"><font color="#494949">Spend some time building new contacts, and don't forget to maintain the ones you already have.</font></div>
<div align="left"><font color="#494949">多花花时间去创建全新的交际圈，不要忘了一定要有一个属于自己的交际圈。</font></div>
<div align="left"><font color="#494949">One of the best ways to get serious information from your network is to regularly ask your contacts how they are, what they do, and what is new about their careers.</font></div>
<div align="left"><font color="#494949">最好的方法就是从网络中获取相关的信息，如：联系方式、他们从事的职业以及他们工作中新出现的东西。</font></div>
<div align="left"><strong><font color="#0000ff">5. Identify Your Current Job</font></strong></div>
<div align="left"><strong><font color="#0000ff">确定你当前的工作</font></strong></div>
<div align="left"><font color="#494949">Your current job should be identified, not assumed.<br />
你当前的工作应该是定格的，而不应该是假设的。</font></div>
<div align="left"><font color="#494949">Make sure you don't work with tasks you assume are important. This is waste of time and talent.</font></div>
<div align="left"><font color="#494949">确保你不是在假设你从事某项工作，请确认你当前从事的工作，这点很重要。否则的话，你就是在浪费自己的时间和才华。</font></div>
<div align="left"><font color="#494949">When you start in a new job, talk to your superior about your priorities. If you're not sure about what is most important, then ask him. And ask him again. Often you will be surprised about the differences between what you assume, and what is really important.</font></div>
<div align="left"><font color="#494949">当你开始从事一项全新的工作时，请告诉你的上司你所有的优点。如果你不确定最重要的是什么，那么，你可以反复地询问你的上司。你通常会为你前后所做出的假设以及什么才是最重要的事情感到惊讶。</font></div>
<div align="left"><strong><font color="#0000ff">6. Identify Your Next Job</font></strong></div>
<div align="left"><strong><font color="#0000ff">6. 确认你的下一步工作</font></strong></div>
<div align="left"><font color="#494949">Your dream job must be identified.<br />
你必须确定你梦想中的工作。</font></div>
<div align="left"><font color="#494949">Before you start planning your future career, be sure you have identified your dream job.</font></div>
<div align="left"><font color="#494949">在你计划设计你将来的职业之前，请确定，你的心中已经有了自己梦想从事的工作。</font></div>
<div align="left"><font color="#494949">In your dream job, you will be doing all the things you enjoy, and none of the things you don't enjoy. What kind of job would that be?<br />
对于你梦想的工作而言，你可以做所有你想做的事，没有一件事让你感到厌倦。那么，那是件什么类型的工作呢？</font></div>
<div align="left"><font color="#494949">Do you like or dislike having responsibility for other employees. Do you like to work with technology or with people? Do you want to run your own business? Do you want to be an artist, a designer or a skilled engineer? A manager?</font></div>
<div align="left"><font color="#494949">你希望或不希望对其他的雇员负责吗？你喜欢与技术打交道还是与人打交道？你希望从事属于自己的商务活动吗？你希望成为一个艺术家、一个设计师、还是一个充满技能的工程师？还是一个主管？</font></div>
<div align="left"><font color="#494949">Before building your future career your goal must be identified.</font></div>
<div align="left"><font color="#494949">无论怎样，在你构建将来的职业梦想之前，先确认你的目标。</font></div>
<div align="left"><strong><font color="#0000ff">7. Prepare Yourself</font></strong></div>
<div align="left"><strong><font color="#0000ff">7. 时刻准备着</font></strong></div>
<div align="left"><font color="#494949">Your dream might show up tomorrow. Be prepared.<br />
你的梦想可能会在明天实现。所以，时刻准备着。</font></div>
<div align="left"><font color="#494949">Don't wait a second. Update your CV now, and continue to update it regularly.</font></div>
<div align="left"><font color="#494949">不要浪费生命中的每一秒钟。现在，每天都把你的个人履历表进行更新。</font></div>
<div align="left"><font color="#494949">Tomorrow your dream job may show up right before your nose. Prepare for it with a professional CV and be ready to describe yourself as a valuable object to anyone that will try to recruit you.</font></div>
<div align="left"><font color="#494949">明天，你梦想的工作就会在不知不觉中得以实现。准备一份专业的个人履历表，然后准备告诉你的雇主，你就是一个最有价值的雇员，然后尝试让他招募你。</font></div>
<div align="left"><strong><font color="#0000ff">8. Pick The Right Tools</font></strong></div>
<div align="left"><strong><font color="#0000ff">8. 选择正确的方法</font></strong></div>
<div align="left"><font color="#494949">Pick the tools you can handle.<br />
你应该选择正确的处理方法。</font></div>
<div align="left"><font color="#494949">You can add a lot to your career by studying books and tutorials. Doing short time courses with certification tests might add valuable weight to your CV. And don't forget: Your current job is often the most valuable source of building new skills.</font></div>
<div align="left"><font color="#494949">你可以通过学习书本和课程。将它添加到你所从事的职业中去。学习一些专业课程并进行职业考试，从而获取文凭，然后将这个也写进你的个人履历中。不要忘了：你当前的工作通常更新你所掌握技能的最有价值源泉。</font></div>
<div align="left"><font color="#494949">Don't pick a tool that is too heavy for you to handle!</font></div>
<div align="left"><font color="#494949">不要挑选那些对你来说太过复杂的方法。</font></div>
<div align="left"><strong><font color="#0000ff">9. Realize Your Dreams</font></strong></div>
<div align="left"><strong><font color="#0000ff">9. 将你的梦想付诸于行动</font></strong></div>
<div align="left"><font color="#494949">Put your dreams into action.</font></div>
<div align="left"><font color="#494949">将你的梦想付诸于行动。</font></div>
<div align="left"><font color="#494949">Don't let a busy job kill your dreams. If you have higher goals, put them into action now.</font></div>
<div align="left"><font color="#494949">不要让繁忙的工作磨灭了你的梦想。如果你的目标定得很高，那么赶快将他们付诸于行动。If you have plans about taking more education, getting a better job, starting your own company or something else, you should not use your daily job as a &quot;waiting station&quot;. Your daily job will get more and more busy, you will be caught up in the rat race, and you will burn up your energy.</font></div>
<div align="left"><font color="#494949">如果你计划接收更多的教育，从而获得一个更好的工作或创办自己公司以及其它什么设想，你应该将你的日常工作看作&ldquo;月台&rdquo;。你的日常工作将变得越来越繁忙，那么你将进步神速并充满力量。</font></div>
<div align="left"><font color="#494949">If you have this energy, you should use it now, to realize your dreams.</font></div>
<div align="left"><font color="#494949">如果你有足够的精力，那么请赶快将你的梦想付诸于行动。</font></div>
          <br/><br/>
          <span style="color:red;">
            <a href="http://finaleden.javaeye.com/blog/129452#comments" style="color:red;">已有 <strong>0</strong> 人发表留言，猛击-&gt;&gt;<strong>这里</strong>&lt;&lt;-参与讨论</a>
          </span>
          <br/><br/><br/>
          <span style="color:#E28822;">JavaEye推荐</span>
          <br/>
          <ul class='adverts'><li><a href='/adverts/42' target='_blank'><span style="color:red;font-weight:bold;">搜狐网站诚聘Java、PHP和C++工程师</span></a></li><li><a href='/adverts/41' target='_blank'><span style="color:red;font-weight:bold;">北京: 千橡集团暨校内网诚聘软件研发工程师</span></a></li></ul>
          <br/><br/><br/>
          ]]>
        </description>
        <pubDate>Sun, 07 Oct 2007 12:44:44 +0800</pubDate>
        <link>http://finaleden.javaeye.com/blog/129452</link>
        <guid>http://finaleden.javaeye.com/blog/129452</guid>
      </item>
  </channel>
</rss>