在 http1.1 协议中,都是基于请求和响应的模式,又是基于 TCP 来进行数据交换的。在 http1.1 中,请求方向远端服务器发送一个请求,请求的内容包括 http 头部信息和可选的内容。然后服务器接到请求,将数据通过 TCP 以流的形式传递到客户端,然后浏览器获取 htm 文档后将其转换为我们所看到的页面。
基于这个原理,我想到了我们是否可以自己编写一个客户端,然后将请求以 socket 输出流的形式写过去呢?结果实验证明我陈功啦,哈哈,这个思路和源码我绝对没有参照任何人,也绝没有百度谷歌。我好像感觉我找到了学习 Java 正确思路……小激动一下!
晒晒源码:
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.net.Socket; public class GetHtml { public static void main(String[] args) throws Exception { Socket socket = new Socket("www.it315.org", 80); PrintWriter pw = new PrintWriter(new OutputStreamWriter(socket .getOutputStream())); pw.println("GET //contact.htm HTTP//1.1"); pw.println("Host:"); pw.println(""); pw.flush(); BufferedReader br = new BufferedReader(new InputStreamReader(socket .getInputStream())); char[] ch = new char[1024]; String receive = null; StringBuffer sb = new StringBuffer(); while (br.read(ch) != -1) { sb.append(ch); } receive = sb.toString(); br.close(); pw.close(); socket.close(); System.out.println(receive); } }
运行结果与我们在浏览器上查看源码的结果是一样的:
HTTP/1.1 200 OK Date: Mon, 27 Jun 2011 15:58:04 GMT Set-Cookie: clientlanguage=zh_CN; Path=/ Content-Type: text/html;charset=UTF-8 Content-Language: zh-CN Connection: close <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>联系我们 - 程序员网校 IT315.org</title> <meta http-equiv="keywords" content="联系程序员网校,程序员网校地址,程序员网址,程序员网校邮箱,程序员网校电话"/> <meta http-equiv="description" content="如果您有什么想好或者对我们有什么建议都可以通过程序员网校网站上的联系方式联系我们。"/> <mce:script src="/r/cms/jquery.js" mce_src="r/cms/jquery.js" type="text/javascript"></mce:script> <mce:script src="/r/cms/front.js" mce_src="r/cms/front.js" type="text/javascript"></mce:script> <mce:script src="/r/cms/www/red/js/common.js" mce_src="r/cms/www/red/js/common.js" type="text/javascript"></mce:script> <link href="/r/cms/www/red/css/layout.css" mce_href="r/cms/www/red/css/layout.css" rel="stylesheet" type="text/css"> <link href="/r/cms/www/red/css/topbanner.css" mce_href="r/cms/www/red/css/topbanner.css" rel="stylesheet" type="text/css"/> </head> <body> <!--top_begin--> <div id="top"> <div class="page box"> <div class="fl " id="logincontent"> <ul id="it315_website_links" class="accesslink"> <li><a href="http://www.it315.org/" mce_href="http://www.it315.org/"><span>程序员网校</span></a></li> <li onmouseout="it315TopBarMenu.clear(this);" onmouseover="it315TopBarMenu.create(this,'it315_website_menu_1');" class=""><a class="item-expand" href="http://bbs.it315.org" mce_href="http://bbs.it315.org"><span>程序员论坛</span></a></li> <li onmouseout="it315TopBarMenu.clear(this);" onmouseover="it315TopBarMenu.create(this,'it315_website_menu_2');" class=""><a class="item-expand" href="http://bbs.it315.org/forum-19-1.html" mce_href="http://bbs.it315.org/forum-19-1.html"><span>网校项目</span></a></li> <li><a href="http://zhidao.it315.org/" mce_href="http://zhidao.it315.org/"><span>程序员知道</span></a></li> <li><a href="http://down.it315.org/" mce_href="http://down.it315.org/"><span>程序员下载</span></a></li> <li><a href="http://www.it315.org/netclass/index.htm" mce_href="http://www.it315.org/netclass/index.htm"><span>网络直播课堂</span></a></li> <li><a href="http://www.cainiaoclub.com/" mce_href="http://www.cainiaoclub.com/" target="_blank"><span>菜鸟俱乐部</span></a></li> <li><a href="http://bbs.itheima.com/" mce_href="http://bbs.itheima.com/" target="_blank"><span>黑马程序员</span></a></li> </ul> <div id="it315_website_menu_1" class="topbar-hiddencontents"><a href="http://bbs.it315.org/forum-13-1.html" mce_href="http://bbs.it315.org/forum-13-1.html">程序员网校课程</a> <a href="http://bbs.it315.org/forum-14-1.html" mce_href="http://bbs.it315.org/forum-14-1.html">程序员网校讲师</a> <a href="http://bbs.it315.org/index.jsp?gid=1" mce_href="http://bbs.it315.org/index.jsp?gid=1">程序员网校技术</a> <a href="http://bbs.it315.org/forum-19-1.html" mce_href="http://bbs.it315.org/forum-19-1.html">程序员网校开发</a> <a href="http://bbs.it315.org/forum-15-1.html" mce_href="http://bbs.it315.org/forum-15-1.html">程序员网校资料</a> <a href="http://bbs.it315.org/forum-31-1.html" mce_href="http://bbs.it315.org/forum-31-1.html">程序员网校自学</a> <a href="http://bbs.it315.org/forum-48-1.html" mce_href="http://bbs.it315.org/forum-48-1.html">程序员网校灌水</a></div> <div id="it315_website_menu_2" class="topbar-hiddencontents"><a href="http://bbs.it315.org/thread-24-1-1.html" mce_href="http://bbs.it315.org/thread-24-1-1.html">IP地区查询</a> <a href="http://bbs.it315.org/thread-25-1-1.html" mce_href="http://bbs.it315.org/thread-25-1-1.html">手机地区查询</a> <a target="_blanck" href="http://www.myeclipse.info" mce_href="http://www.myeclipse.info">MyEclipse注册机</a><a target="_blanck" href="http://bbscast.it315.org" mce_href="http://bbscast.it315.org">BBScast开源论坛</a></div> </div> <div class="fr"> <a href="http://www.it315.org/tag.jspx" mce_href="http://www.it315.org/tag.jspx" target="_blank">Tags</a><a href="http://www.it315.org/guestbook.jspx" mce_href="http://www.it315.org/guestbook.jspx" target="_blank">留言板</a><a href="http://www.it315.org/rss.jspx" mce_href="http://www.it315.org/rss.jspx" target="_blank">RSS订阅</a><a href="#" mce_href="#" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.it315.org');">设为主页</a> <a onclick="javascript:window.external.AddFavorite('http://www.it315.org', '程序员网校 IT315.org');" href="javascript:void(0)" mce_href="javascript:void(0)" class="login_user">加入收藏</a> </div> </div> </div><!--top_end--> <!--header_begin--> <div id="header" class="box"> <div id="logo" class="page box"> <div class="logo fl" onclick="window.location.href='/'"></div> <div class="banner fl"> <ul class="logo_l left"> <li><b><a href="http://www.it315.org/itnews/index.htm" mce_href="http://www.it315.org/itnews/index.htm" target="_blank">资讯</a></b><a href="http://www.it315.org/itlife/index.htm" mce_href="http://www.it315.org/itlife/index.htm" target="_blank">生活</a><a href="http://www.it315.org/itvendor/index.htm" mce_href="http://www.it315.org/itvendor/index.htm" target="_blank">厂商</a><a href="http://www.it315.org/industry/index.htm" mce_href="http://www.it315.org/industry/index.htm" target="_blank">应用</a><br> <b><a href="http://www.it315.org/netclass/index.htm" mce_href="http://www.it315.org/netclass/index.htm" target="_blank">课堂</a></b><a href="http://www.itcast.cn/courses" mce_href="http://www.itcast.cn/courses" target="_blank">Java</a><a href="http://www.itcast.cn/itcast_static/3G.html" mce_href="http://www.itcast.cn/itcast_static/3G.html" target="_blank">3G </a><a href="http://www.itcast.cn/itcast_static/javajz1.htm" mce_href="http://www.itcast.cn/itcast_static/javajz1.htm" target="_blank">面试</a></li> <li><b><a href="http://www.it315.org/programmer/index.htm" mce_href="http://www.it315.org/programmer/index.htm" target="_blank">在线</a></b><a href="http://www.it315.org/report/index.htm" mce_href="http://www.it315.org/report/index.htm" target="_blank">报道</a><a href="http://www.it315.org/visit/index.htm" mce_href="http://www.it315.org/visit/index.htm" target="_blank">访谈</a><a href="http://www.it315.org/club/index.htm" mce_href="http://www.it315.org/club/index.htm" target="_blank">茶馆</a><br> <b><a href="http://www.it315.org/design/index.htm" mce_href="http://www.it315.org/design/index.htm" target="_blank">设计</a></b><a href="http://www.it315.org/pages/index.htm" mce_href="http://www.it315.org/pages/index.htm" target="_blank">设计</a><a href="http://www.it315.org/rules/index.htm" mce_href="http://www.it315.org/rules/index.htm" target="_blank">标准</a><a href="http://www.it315.org/activit/index.htm" mce_href="http://www.it315.org/activit/index.htm" target="_blank">活动</a></li> <li><b><a href="http://www.it315.org/program/index.htm" mce_href="http://www.it315.org/program/index.htm" target="_blank">编程</a></b><a href="http://www.it315.org/programjava/index.htm" mce_href="http://www.it315.org/programjava/index.htm" target="_blank">Java</a><a href="http://www.it315.org/programnet/index.htm" mce_href="http://www.it315.org/programnet/index.htm" target="_blank">.Net</a><a href="http://www.it315.org/programphp/index.htm" mce_href="http://www.it315.org/programphp/index.htm" target="_blank">PHP</a><br> <b><a href="http://www.it315.org/jobnews/index.htm" mce_href="http://www.it315.org/jobnews/index.htm" target="_blank">求职</a></b><a href="http://www.it315.org/career/index.htm" mce_href="http://www.it315.org/career/index.htm" target="_blank">话题</a><a href="http://www.it315.org/findjob/index.htm" mce_href="http://www.it315.org/findjob/index.htm" target="_blank">经验</a><a href="http://www.it315.org/interview/index.htm" mce_href="http://www.it315.org/interview/index.htm" target="_blank">秘籍</a></li> <li class="berno" style="width: 170px;"><b><a href="http://www.it315.org/teacher/index.htm" mce_href="http://www.it315.org/teacher/index.htm" target="_blank">讲师</a></b><a href="http://www.it315.org/teacher/41.htm" mce_href="http://www.it315.org/teacher/41.htm" target="_blank">张孝祥</a><a href="http://www.it315.org/teacher/42.htm" mce_href="http://www.it315.org/teacher/42.htm" target="_blank">黎活明</a><a href="http://www.it315.org/teacher/43.htm" mce_href="http://www.it315.org/teacher/43.htm" target="_blank">方立勋</a> <br> <b><a href="http://www.it315.org/log/index.htm" mce_href="http://www.it315.org/log/index.htm" target="_blank">日志</a></b><a href="http://www.it315.org/log/45.htm" mce_href="http://www.it315.org/log/45.htm" target="_blank">寄语</a><a href="http://www.it315.org/log/94.htm" mce_href="http://www.it315.org/log/94.htm" target="_blank">理念</a><a href="http://www.it315.org/link.htm" mce_href="http://www.it315.org/link.htm" target="_blank">合作</a><a href="http://www.it315.org/guestbook.jspx" mce_href="http://www.it315.org/guestbook.jspx" target="_blank">建议</a> </li> </ul> </div> </div> <div style="height:90px;width:960px;" id="logo" class="page box"> <a target="_blank" href="http://edu.csdn.net/heima/netclass.html" mce_href="http://edu.csdn.net/heima/netclass.html"><img style="height:90px;width:960px;" src="http://edu.csdn.net/heima/images/top04.gif" mce_src="http://edu.csdn.net/heima/images/top04.gif" alt="中关村黑马程序员训练营 电话咨询:400 6810006 第三届仅限70人 名额有限 人满即开 火热报名中 不做软件开发不还学费!学习期间不用花一分钱!不就业不还学费!绝无任何利息!"></a> </div> <div class="box"></div> <div id="menu" class="page box"> <dl id="topmenu"> <dt class="menu_first"><a href="/" mce_href="" target="_self" class="selected" id="nav1" onmouseover="jeeNav(this,11)"><span>首 页</span></a></dt> <dt><a href="http://www.it315.org/netclassan/96.htm" mce_href="http://www.it315.org/netclassan/96.htm" target="_self" id="nav2" onmouseover="jeeNav(this,11)"><span>在线学习</span></a></dt> <dt><a href="http://www.itcast.cn" mce_href="http://www.itcast.cn" target="_self" id="nav3" onmouseover="jeeNav(this,11)"><span>专业培训</span></a></dt> <dt><a href="/programmer/index.htm" mce_href="programmer/index.htm" target="_self" id="nav4" onmouseover="jeeNav(this,11)"><span>程序员在线</span></a></dt> <dt><a href="/itnews/index.htm" mce_href="itnews/index.htm" target="_self" id="nav5" onmouseover="jeeNav(this,11)"><span>资讯交流</span></a></dt> <dt><a href="/netclass/index.htm" mce_href="netclass/index.htm" target="_self" id="nav6" onmouseover="jeeNav(this,11)"><span>网络课堂</span></a></dt> <dt><a href="/design/index.htm" mce_href="design/index.htm" target="_self" id="nav7" onmouseover="jeeNav(this,11)"><span>设计���线</span></a></dt> <dt><a href="/program/index.htm" mce_href="program/index.htm" target="_self" id="nav8" onmouseover="jeeNav(this,11)"><span>网络编程</span></a></dt> <dt><a href="/jobnews/index.htm" mce_href="jobnews/index.htm" target="_self" id="nav9" onmouseover="jeeNav(this,11)"><span>求职招聘</span></a></dt> <dt><a href="/netcalss/index.htm" mce_href="netcalss/index.htm" target="_self" id="nav10" onmouseover="jeeNav(this,11)"><span>网校中心</span></a></dt> <dt><a href="http://down.it315.org" mce_href="http://down.it315.org" target="_self" id="nav11" onmouseover="jeeNav(this,11)"><span>资料下载</span></a></dt> <dd> <ul id="sub1"> <li><b>滚动资讯:</b> </li> <li class="notice"> <div id="roll-827d20884a8f4a9398375a1832a9b87e" style="margin-top: -3px;overflow:hidden;height:20px;" onmouseover="clearInterval(proll827d20884a8f4a9398375a1832a9b87e.pevent)" onmouseout="proll827d20884a8f4a9398375a1832a9b87e.pevent=setInterval(function(){proll827d20884a8f4a9398375a1832a9b87e.roll.call(proll827d20884a8f4a9398375a1832a9b87e)},proll827d20884a8f4a9398375a1832a9b87e.speed)"> <div id="roll-orig-827d20884a8f4a9398375a1832a9b87e"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr><td height="20" id="roll-line-827d20884a8f4a9398375a1832a9b87e" width="33.333333%""><div><div class="f-left"><span class="red">06-13</span> <a href="/club/261.htm" mce_href="club/261.htm" title="如何成为优秀的程序员?" target="_blank"><span style="">如何成为优秀的程序员?</span></a></div><div class="clear"></div></div> </td> <td height="20" width="33.333333%""><div><div class="f-left"><span class="red">06-13</span> <a href="/club/260.htm" mce_href="club/260.htm" title="程序员成长的10个阶段" target="_blank"><span style="">如何成为真正的程序员</span></a></div><div class="clear"></div></div> </td> <td height="20" width="33.333333%""><div><div class="f-left"><span class="red">06-13</span> <a href="/club/259.htm" mce_href="club/259.htm" title="准备好了吗?写给即将入行的程序员的一封信" target="_blank"><span style="">写给即将入行的程序员的一封信</span></a></div><div class="clear"></div></div> </td></tr> <tr><td height="20""><div><div class="f-left"><span class="red">06-07</span> <a href="/netclassan/258.htm" mce_href="netclassan/258.htm" title="6月9日/10日张孝祥单点登录/CAS服务配置" target="_blank"><span style="">6月9日/10日张孝祥单点登录/CAS服务配置</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><span class="red">05-27</span> <a href="/netclassan/257.htm" mce_href="netclassan/257.htm" title="网络直播方立勋JavaWeb课程30天" target="_blank"><span style="">网络直播方立勋JavaWeb课程30天</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><span class="red">05-20</span> <a href="/internet/256.htm" mce_href="internet/256.htm" title="域名界内传奇:蔡文胜背后的优质域名大军" target="_blank"><span style="">域名界内传奇:蔡文胜背后的优质域名大军</span></a></div><div class="clear"></div></div> </td></tr> <tr><td height="20""><div><div class="f-left"><span class="red">05-19</span> <a href="/club/255.htm" mce_href="club/255.htm" title="8k以上月薪Android程序员征婚启事" target="_blank"><span style="">8k以上月薪Android程序员征婚启事</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><s> <tr><td height="20""><div><div class="f-left"><span class="red">06-07</span> <a href="/netclassan/258.htm" mce_href="netclassan/258.htm" title="6月9日/10日张孝祥单点登录/CAS服务配置" target="_blank"><span style="">6月9日/10日张孝祥单点登录/CAS服务配置</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><span class="red">05-27</span> <a href="/netclassan/257.htm" mce_href="netclassan/257.htm" title="网络直播方立勋JavaWeb课程30天" target="_blank"><span style="">网络直播方立勋JavaWeb课程30天</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><span class="red">05-20</span> <a href="/internet/256.htm" mce_href="internet/256.htm" title="域名界内传奇:蔡文胜背后的优质域名大军" target="_blank"><span style="">域名界内传奇:蔡文胜背后的优质域名大军</span></a></div><div class="clear"></div></div> </td></tr> <tr><td height="20""><div><div class="f-left"><span class="red">05-19</span> <a href="/club/255.htm" mce_href="club/255.htm" title="8k以上月薪Android程序员征婚启事" target="_bpan class="red">05-19</span> <a href="/report/254.htm" mce_href="report/254.htm" title="恳请李开复老师创建软件培训学院的一封信" target="_blank"><span style="">张孝祥老师给李开复老师的一封信</span></a></div><div class="clear"></div></div> </td> <td height="20""><div><div class="f-left"><span class="red">04-25</span> <a href="/netclassan/253.htm" mce_href="netclassan/253.htm" title="4月25日免费网络直播如何快速进行网站建设" target="_blank"><span style="">25日免费网络直播如何快速进行网站建设</span></a></div><div class="clear"></div></div> </td></tr> </table> </div> <div id="roll-copy-827d20884a8f4a9398375a1832a9b87e"></div> </div> <mce:script type="text/javascript"><!-- var proll827d20884a8f4a9398375a1832a9b87e=new Cms.UpRoller("827d20884a8f4a9398375a1832a9b87e",20,true,100,1,1,20); // --></mce:script> </li> </ul> <ul class="hide" id="sub2"> <li><a href="http://www.it315.org/netclassan/96.htm" mce_href="http://www.it315.org/netclassan/96.htm">JAVA教程</a></li> </ul> <ul class="hide" id="sub3"> <li><a href="http://www.itcast.cn/" mce_href="http://www.itcast.cn/">JAVA培训</a></li> <li><a href="http://net.itcast.cn" mce_href="http://net.itcast.cn">.NET培训</a></li> <li><a href="http://edu.csdn.net/heima/" mce_href="http://edu.csdn.net/heima/">黑马训练营</a></li> </ul> <ul class="hide" id="sub4"> <li><a href="/report/index.htm" mce_href="report/index.htm">程序员报道</a></li> <li><a href="/recsoft/index.htm" mce_href="recsoft/index.htm">程序推荐</a></li> <li><a href="/gather/index.htm" mce_href="gather/index.htm">程序员聚会</a></li> <li><a href="/visit/index.htm" mce_href="visit/index.htm">程序员访谈</a></li> <li><a href="/club/index.htm" mce_href="club/index.htm">程序员茶馆</a></li> <li><a href="/topsoft/index.htm" mce_href="topsoft/index.htm">程序排行</a></li> </ul> <ul class="hide" id="sub5"> <li><a href="/itlife/index.htm" mce_href="itlife/index.htm">IT生活</a></li> <li><a href="/itvendor/index.htm" mce_href="itvendor/index.htm">IT厂商</a></li> <li><a href="/internet/index.htm" mce_href="internet/index.htm">互联网</a></li> <li><a href="/industry/index.htm" mce_href="industry/index.htm">行业应用</a></li> <li><a href="/photo/index.htm" mce_href="photo/index.htm">图片新闻</a></li> </ul> <ul class="hide" id="sub6"> <li><a href="/netclassan/index.htm" mce_href="netclassan/index.htm">课堂通知</a></li> <li><a href="/netclassdocs/index.htm" mce_href="netclassdocs/index.htm">课堂资料</a></li> <li><a href="/courses/index.htm" mce_href="courses/index.htm">同步课堂</a></li> </ul> <ul class="hide" id="sub7"> <li><a href="/coolsoft/index.htm" mce_href="coolsoft/index.htm">程序推荐</a></li> <li><a href="/pages/index.htm" mce_href="pages/index.htm">网页设计</a></li> <li><a href="/rules/index.htm" mce_href="rules/index.htm">WEB标准</a></li> <li><a href="/video/index.htm" mce_href="video/index.htm">视频处理</a></li> <li><a href="/activit/index.htm" mce_href="activit/index.htm">设计活动</a></li> </ul> <ul class="hide" id="sub8"> <li><a href="/programjava/index.htm" mce_href="programjava/index.htm">Java编程</a></li> <li><a href="/programnet/index.htm" mce_href="programnet/index.htm">.Net编程</a></li> <li><a href="/programphp/index.htm" mce_href="programphp/index.htm">Php编程</a></li> <li><a href="/programasp/index.htm" mce_href="programasp/index.htm">Asp编程</a></li> <li><a href="/programxml/index.htm" mce_href="programxml/index.htm">Xml编程</a></li> <li><a href="/programaccess/index.htm" mce_href="programaccess/index.htm">Access</a></li> <li><a href="/programmssql/index.htm" mce_href="programmssql/index.htm">Mssql</a></li> <li><a href="/programmysql/index.htm" mce_href="programmysql/index.htm">Mysql</a></li> </ul> <ul class="hide" id="sub9"> <li><a href="/company/index.htm" mce_href="company/index.htm">企业点评</a></li> <li><a href="/career/index.htm" mce_href="career/index.htm">职场话题</a></li> <li><a href="/findjob/index.htm" mce_href="findjob/index.htm">求职经验</a></li> <li><a href="/interview/index.htm" mce_href="interview/index.htm">面试秘籍</a></li> <li><a href="/listjobs/index.htm" mce_href="listjobs/index.htm">招聘职位</a></li> </ul> <ul class="hide" id="sub10"> <li><a href="/log/index.htm" mce_href="log/index.htm">成长日志</a></li> <li><a href="/teacher/index.htm" mce_href="teacher/index.htm">讲师推荐</a></li> <li><a href="/classaction/index.htm" mce_href="classaction/index.htm">网校活动</a></li> </ul> <ul cla='/programjava/index.htm'>Java编程</a></li> <li><a href="/programnet/index.htm" mce_href="programnet/index.htm">.Net编程</a></li> <li><a href="/programphp/index.htm" mce_href="programphp/index.htm">Php编程</a></li> <li><a href="/programasp/index.htm" mce_href="programasp/index.htm">Asp编程</a></li> <li><a href="/programxml/index.htm" mce_href="programxml/index.htm">Xml编程</a></li> <li><a href="/programaccess/index.htm" mce_href="programaccess/index.htm">Access</a></li> <li><a href="/programmssql/index.htm" mce_href="programmssql/index.htm">Mssql</a></li> <li><a href="/programmysql/index.htm" mce_href="programmysql/index.htm">Mysql</a></li> </ul> <ul class="hide" id="sub9"> <li><a href="/company/index.htm" mce_href="company/index.htm">企业点评</a></li> <li><a href="/career/index.htm" mce_href="career/index.htm">职场话题</a></li> <li><a href="/findjob/index.htm" mce_href="findjob/index.htm">求职经验</a></li> <li><a href="/interview/index.htm" mce_href="interview/index.htm">面试秘籍</a></li> ss="hide" id="sub11"> <li><a href="http://down.it315.org/java/index.htm" mce_href="http://down.it315.org/java/index.htm">JAVA专区</a></li> <li><a href="http://down.it315.org/asp/index.htm" mce_href="http://down.it315.org/asp/index.htm">ASP专区</a></li> <li><a href="http://down.it315.org/net/index.htm" mce_href="http://down.it315.org/net/index.htm">.NET专区</a></li> <li><a href="http://down.it315.org/php/index.htm" mce_href="http://down.it315.org/php/index.htm">PHP专区</a></li> <li><a href="http://down.it315.org/c/index.htm" mce_href="http://down.it315.org/c/index.htm">C/C++专区</a></li> <li><a href="http://down.it315.org/embedded/index.htm" mce_href="http://down.it315.org/embedded/index.htm">嵌入式专区</a></li> <li><a href="http://down.it315.org/database/index.htm" mce_href="http://down.it315.org/database/index.htm">数据库专区</a></li> <li><a href="http://down.it315.org/web/index.htm" mce_href="http://down.it315.org/web/index.htm">网页制作</a></li> <li><a href="http://down.it315.org/soft/index.htm" mce_href="http://down.it315.org/soft/index.htm">软件下载</a></li> <li><a href="http://down.it315.org/other/index.htm" mce_href="http://down.it315.org/other/index.htm">其它资料</a></li> </ul> </dd> </dl> </div> </div><!--header_end--> <!--search_begin--> <div id="search" class="page box"> <div class="searchform fl"> <form action="/search.jspx" target="_blank"> <input name="q" value="请输入关键词" type="text" id="txtKey" onfocus="if(this.value=='请输入关键词')this.value=''" onblur="if(this.value=='')this.value='请输入关键词'" maxlength="24" autocomplete="off" /> <span id="fid_box"> <select name="channelId" id="fid"> <option value="">所有信息</option> <option value="71">在线学习</option> <option value="72">专业培训</option> <option value="3">程序员在线</option> <option value="1">资讯交流</option> <option value="2">网络课堂</option> <option value="4">设计在线</option> <option value="5">网络编程</option> <option value="6">求职招聘</option> <option value="7">网校中心</option> <option value="73">资料下载</option> </select> </span> <input type="submit" id="btnSearch" value=""/> </form> </div> <div class="hottag fr "> 热门tags: <a href="/tag/120.jspx" mce_href="tag/120.jspx" target="_blank">张孝祥</a>|<a href="/tag/106.jspx" mce_href="tag/106.jspx" target="_blank">程序员</a>|<a href="/tag/118.jspx" mce_href="tag/118.jspx" target="_blank">面试题</a>|<a href="/tag/152.jspx" mce_href="tag/152.jspx" target="_blank">传智播客</a>|<a href="/tag/117.jspx" mce_href="tag/117.jspx" target="_blank">笔试</a>|<a href="/tag/322.jspx" mce_href="tag/322.jspx" target="_blank">课程</a> </div> </div><!--search_end--> <!--body_begin--> <div id="main"> <div class="page"><a href="http://www.itcast.cn/" mce_href="http://www.itcast.cn/" target="blank"><img src="/r/cms/www/red/img/banner1.jpg" mce_src="r/cms/www/red/img/banner1.jpg" /></a></div> <div class="page2 position"> 您现在正在浏览: <a href="/" mce_href="">首页</a> » 联系我们</div> <!--cjbd_begin--> <div class="page2 box"> <div class="w700 fl"> <div class="rb_top"></div> <div class="rb_mid box"> <div class="w96"> <h1 class="line">联系我们</h1> <div class="content" style="min-height:800px;" mce_style="min-height:800px;"> <p>地 址:北京市海淀区国家信息产业基地上地东路27号春生泰克大厦406室</p> <p>邮 编:100085</p> <p>网 址:<a href="http://www.it315.org/" mce_href="http://www.it315.org/">www.it315.org</a></p> <p>E-mail:<a href="mailto:[email protected]" mce_href="mailto:[email protected]">[email protected]</a></p> <p>电 话:13601114652</p> <p>Q Q:<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=1034686662&site=qq&menu=yes" mce_href="http://wpa.qq.com/msgrd?v=3&uin=1034686662&site=qq&menu=yes">1034686662</a></p> <p>腾讯微博:<a target="_blank" href="http://t.qq.com/it315_org" mce_href="http://t.qq.com/it315_org">http://t.qq.com/it315_org</a></p> <p>新浪微博:<a target="_blank" hrefrget="_blank">课程</a> </div> </div><!--search_end--> <!--body_begin--> <div id="main"> <div class="page"><a href="http://www.itcast.cn/" mce_href="http://www.itcast.cn/" target="blank"><img src="/r/cms/www/red/img/banner1.jpg" mce_src="r/cms/www/red/img/banner1.jpg" /></a></div> <div class="page2 position"> 您现在正在浏览: <a href="/" mce_href="">首页</a> » 联系我们</div> <!--cjbd_begin--> <div class="page2 box"> <div class="w700 fl"> <div class="rb_top"></div> <div class="rb_mid box"> <div class="w96"> <h1 class="line">联系我们</h1> <div class="content" style="min-height:800px;" mce_style="min-height:800px;"> <p>地 址:北京市海淀区国家信息产业基地上地东路27号春生泰克大厦406室</p> <p>邮 编:100085</p> <p>网 址:<a href="http://www.it315.org/" mce_href="http://www.it315.org/">www.it315.org</a></p> <p>E-mail:<a href="mailto:[email protected]" mce_href="mailto:[email protected]">[email protected]</a></p> <p>电 话:13601114652</p> <p>Q Q:<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=1034686662&site=qq&menu=yes" mce_href="http://wpa.qq.com/msgrd?v=3&uin=1034686662&site=qq&menu=yes">1034686662</a></p> <p>腾讯微博:<a target="_blank" href="http://t.qq.com/it315_org" mce_href="http://t.qq.com/it315_org">http://t.qq.com/it315_org</a></p> <p>新浪微博:<a target="_b="http://t.sina.com.cn/it315">http://t.sina.com.cn/it315</a></p> <p>搜狐微博:<a target="_blank" href="http://t.sohu.com/it315" mce_href="http://t.sohu.com/it315">http://t.sohu.com/it315</a></p> <p>网易微博:<a target="_blank" href="http://t.163.com/it315" mce_href="http://t.163.com/it315">http://t.163.com/it315</a></p> <p><b>公司地址地图:</b></p> <p><iframe scrolling="no" height="480" frameborder="0" width="640" marginheight="0" marginwidth="0" src="http://ditu.google.com/maps?f=q&source=embed&hl=zh-cn&geocode=&q=%3F%3F%3F%C7%B2%3F%3F%3F&sll=40.009998,116.268311&sspn=0.121225,0.294914&brcurrent=3,0x35f05137c865ad63:0xd348af83c67dc389,0%3B5,0,0&ie=UTF8&hq=%3F%3F%3F%C7%B2%3F%3F%3F&hnear=&cid=14866309601229910332&ll=40.11694,116.358948&spn=0.504095,0.878906&z=10&iwloc=A&output=embed" mce_src="http://ditu.google.com/maps?f=q&source=embed&hl=zh-cn&geocode=&q=%3F%3F%3F%C7%B2%3F%3F%3F&sll=40.009998,116.268311&sspn=0.121225,0.294914&brcurrent=3,0x35f05137c865ad63:0xd348af83c67dc389,0%3B5,0,0&ie=UTF8&hq=%3F%3F%3F%C7%B2%3F%3F%3F&hnear=&cid=14866309601229910332&ll=40.11694,116.358948&spn=0.504095,0.878906&z=10&iwloc=A&output=embed"></iframe><br /> <small><a href="http://ditu.google.com/maps?f=q&source=embed&hl=zh-cn&geocode=&q=%3F%3F%3F%C7%B2%3F%3F%3F&sll=40.009998,116.268311&sspn=0.121225,0.294914&brcurrent=3,0x35f05137c865ad63:0xd348af83c67dc389,0%3B5,0,0&ie=UTF8&hq=%3F%3F%3F%C7%B2%3F%3F%3F&hnear=&cid=14866309601229910332&ll=40.11694,116.358948&spn=0.504095,0.878906&z=10&iwloc=A" mce_href="http://ditu.google.com/maps?f=q&source=embed&hl=zh-cn&geocode=&q=%3F%3F%3F%C7%B2%3F%3F%3F&sll=40.009998,116.268311&sspn=0.121225,0.294914&brcurrent=3,0x35f05137c865ad63:0xd348af83c67dc389,0%3B5,0,0&ie=UTF8&hq=%3F%3F%3F%C7%B2%3F%3F%3F&hnear=&cid=14866309601229910332&ll=40.11694,116.358948&spn=0.504095,0.878906&z=10&iwloc=A" style="color: rgb(0, 0, 255); text-align: left;" mce_style="color: #0000ff; text-align: left;">查看大图</a></small></p> <p> </p> </div> <mce:script src="/r/cms/www/red/js/art_share.js" mce_src="r/cms/www/red/js/art_share.js" type="text/javascript"></mce:script> <mce:script src="/r/cms/www/red/js/art_sharemore.js" mce_src="r/cms/www/red/js/art_sharemore.js" type="text/javascript"></mce:script> </div> </div> <div class="rb_low"></div> </div> <div class="w250 fr"> <!--相关文章_Begin--> <div class="rb_right_top"> <h2>最新图文</h2> </div> <div class="rb_right_div"> <!--最新图文_Begin--> <div class="w98"> <ul class="list right_pic"> <li><a href="/internet/221.htm" mce_href="internet/221.htm" target="_blank"><img src="/u/cms/www/201102/10144959z5rw.jpg" mce_src="u/cms/www/201102/10144959z5rw.jpg" alt="2010中国互联网哈哈榜之十大网络红人" /></a><a href="/internet/221.htm" mce_href="internet/221.htm" title="2010中国互联网哈哈榜之十大网络红人" target="_blank">2010中国互联网哈哈榜</a></li> <li><a href="/report/220.htm" mce_href="report/220.htm" target="_blank"><img src="/u/cms/www/201102/101433561dcl.jpg" mce_src="u/cms/www/201102/101433561dcl.jpg" alt="扎克伯格新宅曝光:一如既往低调(组图)" /></a><a href="/report/220.htm" mce_href="report/220.htm" title="扎克伯格新宅曝光:一如既往低调(组图)" target="_blank">扎克伯格新宅曝光:一</a></li> <li><a href="/internet/219.htm" mce_href="internet/219.htm" target="_blank"><img src="/u/cms/www/201102/10142801vm2c.jpg" mce_src="u/cms/www/201102/10142801vm2c.jpg" alt="中国互联网耻辱柱" /></a><a href="/internet/219.htm" mce_href="internet/219.htm" title="中国互联网耻辱柱" target="_blank">中国互联网耻辱柱</a></li> <li><a href="/internet/218.htm" mce_href="internet/218.htm" target="_blank"><img src="/u/cms/www/201102/10142416aol7.jpg" mce_src="u/cms/www/201102/10142416aol7.jpg" alt="世界上最贵的域名后缀:只可远观不可亵玩" /></a><a href="/internet/218.htm" mce_href="internet/218.htm" title="世界上最贵的域名后缀:只可远观不可亵玩" target="_blank">世界上最贵的域名后缀</a></li> </ul> </div> <!--最新图文_End--> <!--本周热门资讯排行_Begin--> <h2><span>本周热门资讯排行</span></h2> <div class="w98"> <ul class="order"> <li><a href="/club/260.htm" mce_href="club/260.htm" title="程序员成长的10个阶段" target="_blank">程序员成长的10个阶段</a></li> <li><a href="/netclassan/96.htm" mce_href="netclassan/96.htm" title="免费在线观看张孝祥Javaweb经典视频!不用下载!试行中!" target="_blank">免费在线观看张孝祥Javaweb经典</a></li> <li><a href="/club/259.htm" mce_href="club/259.htm" title="准备好了吗?写给即将入行的程序员的一封信" target="_blank">准备好了吗?写给即将入行的程序</a></li> <li><a href="/club/251.htm" mce_href="club/251.htm" title="2011程序员薪资调查报告" target="_blank">2011程序员薪资调查报告</a></li> <li><a href="/netclassan/257.htm" mce_href="netclassan/257.htm" title="网络直播方立勋JavaWeb课程30天" target="_blank">网络直播方立勋JavaWeb课程30天</a></li> <li><a href="/netclassan/258.htm" mce_href="netclassan/258.htm" title="6月9日/10日张孝祥单点登录/CAS服务配置" target="_blank">6月9日/10日张孝祥单点登录/CAS</a></li> <li><a href="/club/255.htm" mce_href="club/255.htm" title="8k以上月薪Android程序员征婚启事" target="_blank">8k以上月薪Android程序员征婚启事</a></li> <li><a href="/pages/216.htm" mce_href="pages/216.htm" title="为什么中国的网页设计这么烂?" target="_blank">为什么中国的网页设计这么烂?</a></li> <li><a href="/internet/221.htm" mce_href="internet/221.htm" title="2010中国互联网哈哈榜之十大网络红人" target="_blank">2010中国互联网哈哈榜之十大网络</a></li> <li><a href="/club/234.htm" mce_href="club/234.htm" title="java新手走android捷径不足一年月薪3w!" target="_blank">java新手走android捷径不足一年</a></li> </ul> </div> <!--本周热门资讯排行_End--> <h2><span>精彩专题</span></h2> <div class="w98"> <dl class="list line box"> <dt><a href="/topic/3.jspx" mce_href="topic/3.jspx" target="_blank">传智播客资料大全</a></dt> <dd class="pic"><a href="/topic/3.jspx" mce_href="topic/3.jspx"><img src="/u/cms/www/201102/070908349q3w.png" mce_src="u/cms/www/201102/070908349q3w.png"/></a></dd> <dd class="text">传智播客JAVASE视频教程、JAVAEE视频教程、ANDROID视频教程下载。</dd> </dl> <dl class="list line box"> <dt><a href="/topic/2.jspx" mce_href="topic/2.jspx" target="_blank">“黑马”给力网络直播</a></dt> <dd class="pic"><a href="/topic/2.jspx" mce_href="topic/2.jspx"><img src="/u/cms/www/201103/22192911m943.gif" mce_src="u/cms/www/201103/22192911m943.gif"/></a></dd> <dd class="text">中关村“黑马程序员”训练营首期开班快一个月了,他们即将学到...</dd> </dl> <dl class="list mt5 box"> <dt><a href="/topic/1.jspx" mce_href="topic/1.jspx" target="_blank">2010年南非世界杯</a></dt> <dd class="pic"><a href="/topic/1.jspx" mce_href="topic/1.jspx"><img src="http://a2.att.hudong.com/08/61/01300000406647124377613651616.jpg" mce_src="http://a2.att.hudong.com/08/61/01300000406647124377613651616.jpg"/></a></dd> <dd class="text">2010年世界杯将在南非约翰内斯堡拉开帷幕,32路豪强将在一个月...</dd> </dl> </div> </div> <div class="rb_right_low"></div> <!--相关文章_End--> </div> </div> </div> <!--body_end--> <!--hotlink_begin--> <dl class="hotlink"> <dt>友情链接</dt> <dd><a href="http://www.itcast.cn/" mce_href="http://www.itcast.cn/" target="_blank">传智播客</a></dd> <dd><a href="http://www.csdn.net/" mce_href="http://www.csdn.net/" target="_blank">CSDN</a></dd> </dl><!--hotlink_end--> <!--footer_begin--> <div class="footer page2"> <a target="_blank" href="http://www.it315.org/about.htm" mce_href="http://www.it315.org/about.htm">关于我们</a>|<a target="_blank" href="http://www.it315.org/contact.htm" mce_href="http://www.it315.org/contact.htm">联系我们</a>|<a target="_blank" href="http://www.it315.org/log/45.htm" mce_href="http://www.it315.org/log/45.htm">诚聘英才</a>|<a target="_blank" href="http://www.it315.org/link.htm" mce_href="http://www.it315.org/link.htm">友情链接</a>|<a target="_blank" href="http://down.it315.org" mce_href="http://down.it315.org">资料下载</a>|<a target="_blank" href="http://www.it315.org" mce_href="http://www.it315.org">合作服务</a>|<a target="_blank" href="http://www.it315.org" mce_href="http://www.it315.org">许可协议</a>|<a onClick="this.style.behavior='url(#default#homepage)';this.setHomePage(location.href)" href="javascript:void(0);" mce_href="javascript:void(0);">设为首页</a>|<a onClick="window.external.addFavorite('http://www.it315.org','程序员网校 - 程序员之家 IT315.org | 我们致力于为中国软件提供动力!')" href="javascript:void(0);" mce_href="javascript:void(0);">加入收藏</a>|<mce:script src="http://s15.cnzz.com/stat.php?id=2400069&web_id=2400069" mce_src="http://s15.cnzz.com/stat.php?id=2400069&web_id=2400069" language="JavaScript"></mce:script><br />电话:010-51552111、13601114652 传真:010-51552110 Processed in 0.031 second(s)<br />Powered by<a target="_blank" href="http://www.jeecms.com" mce_href="http://www.jeecms.com">JEECMS</a>Copyright © 2005-2011 IT315.org, All Rights Reserved<br><a target="_blank" href="http://www.miibeian.gov.cn/" mce_href="http://www.miibeian.gov.cn/">京ICP备05027796号</a></div><!--footer_end--> </body> </html> org/contact.htm">联系我们</a>|<a target="_blank" href="http://www.it315.org/log/45.htm" mce_href="http://www.it315.org/log/45.htm">诚聘英才</a>|<a target="_blank" href="http://www.it315.org/link.htm" mce_href="http://www.it315.org/link.htm">友情链接</a>|<a target="_blank" href="http://down.it315.org" mce_href="http://down.it315.org">资料下载</a>|<a target="_blank" href="http://www.it315.org" mce_href="http://www.it315.org">合作服务</a>|<a target="_blank" href="http://www.it315.org" mce_href="http://www.it315.org">许可协议</a>|<a onClick="this.style.behavior='url(#default#homepage)';this.setHomePage(location.href)" href="javascript:void(0);" mce_href="javascript:void(0);">设为首页</a>|<a onClick="window.external.addFavorite('http://www.it315.org','程序员网校 - 程序员之家 IT315.org | 我们致力于为中国软件提供动力!')" href="javascript:void(0);" mce_href="javascript:void(0);">加入收藏</a>|<mce:script src="http://s15.cnzz.com/stat.php?id=2400069&web_id=2400069" mce_src="http://s15.cnzz.com/stat.php?id=2400069&web_id=2400069" language="JavaScript"></mce:script><br />电话:010-51552111、13601114652 传真:010-51552110 Processed in 0.031 second(
抽根烟~继续再找点乐子